* fix: Do not self import @calcom/ui * Make translations optional * Fix mocking implementation of Button (never worked) * Ensure other libraries can resolve AppListCard
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
export type CredentialOwner = {
|
|
name: string | null;
|
|
avatar?: string | null;
|
|
teamId?: number;
|
|
credentialId?: number;
|
|
readOnly?: boolean;
|
|
};
|