external-account.ts 205 B

1234567891011
  1. import { Ref } from '@growi/core';
  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. }