import { Ref } from '@growi/core'; import { IUser } from '~/interfaces/user'; export type IExternalAccount<ID = string> = { _id: ID, providerType: string, accountId: string, user: Ref<IUser>, }