Sfoglia il codice sorgente

remove unnecessary interface

Yuki Takei 8 mesi fa
parent
commit
14a2ed16ee

+ 0 - 18
apps/app/src/features/questionnaire/interfaces/growi-app-info.ts

@@ -1,18 +0,0 @@
-import type { IGrowiAdditionalInfo, IGrowiInfo } from '@growi/core/dist/interfaces';
-
-import type { AttachmentMethodType } from '~/interfaces/attachment';
-import type { IExternalAuthProviderType } from '~/interfaces/external-auth-provider';
-
-
-export type IGrowiAppAdditionalInfo = IGrowiAdditionalInfo & {
-  attachmentType: AttachmentMethodType
-  activeExternalAccountTypes?: IExternalAuthProviderType[]
-}
-
-// legacy properties (extracted from additionalInfo for growi-questionnaire)
-// see: https://gitlab.weseek.co.jp/tech/growi/growi-questionnaire
-export type IGrowiAppInfoLegacy = Omit<IGrowiInfo<IGrowiAppAdditionalInfo>, 'additionalInfo'>
-  & IGrowiAppAdditionalInfo
-  & {
-    appSiteUrlHashed: string,
-  };