external-account.ts 173 B

12345678
  1. import type { Ref } from './common';
  2. import type { IUser } from './user';
  3. export type IExternalAccount<P> = {
  4. providerType: P,
  5. accountId: string,
  6. user: Ref<IUser>,
  7. }