external-account.ts 212 B

12345678910
  1. import { Ref } from '~/interfaces/common';
  2. import { IUser } from '~/interfaces/user';
  3. export type IExternalAccount<ID = string> = {
  4. _id: ID,
  5. providerType: string,
  6. accountId: string,
  7. user: Ref<IUser>,
  8. }