فهرست منبع

fix build error

ryoji-s 2 سال پیش
والد
کامیت
7a3d0a5da0
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      apps/app/src/features/questionnaire/interfaces/growi-info.ts

+ 3 - 2
apps/app/src/features/questionnaire/interfaces/growi-info.ts

@@ -1,6 +1,6 @@
 import * as os from 'node:os';
 import * as os from 'node:os';
 
 
-import type { IExternalAuthProviderType } from '@growi/core';
+import { IExternalAuthProviderType } from '@growi/core';
 
 
 export const GrowiServiceType = {
 export const GrowiServiceType = {
   cloud: 'cloud',
   cloud: 'cloud',
@@ -25,12 +25,13 @@ export const GrowiDeploymentType = {
   node: 'node',
   node: 'node',
   others: 'others',
   others: 'others',
 } as const;
 } as const;
+export const GrowiExternalAuthProviderType = IExternalAuthProviderType;
 
 
 export type GrowiServiceType = typeof GrowiServiceType[keyof typeof GrowiServiceType]
 export type GrowiServiceType = typeof GrowiServiceType[keyof typeof GrowiServiceType]
 type GrowiWikiType = typeof GrowiWikiType[keyof typeof GrowiWikiType]
 type GrowiWikiType = typeof GrowiWikiType[keyof typeof GrowiWikiType]
 export type GrowiAttachmentType = typeof GrowiAttachmentType[keyof typeof GrowiAttachmentType]
 export type GrowiAttachmentType = typeof GrowiAttachmentType[keyof typeof GrowiAttachmentType]
 export type GrowiDeploymentType = typeof GrowiDeploymentType[keyof typeof GrowiDeploymentType]
 export type GrowiDeploymentType = typeof GrowiDeploymentType[keyof typeof GrowiDeploymentType]
-export type GrowiExternalAuthProviderType = IExternalAuthProviderType
+export type GrowiExternalAuthProviderType = typeof GrowiExternalAuthProviderType[keyof typeof GrowiExternalAuthProviderType]
 
 
 interface IGrowiOSInfo {
 interface IGrowiOSInfo {
   type?: ReturnType<typeof os.type>
   type?: ReturnType<typeof os.type>