From 80f2c0dfd2df32b86a2f2f61a2b6b78e71a44b2d Mon Sep 17 00:00:00 2001 From: aslakihle Date: Fri, 9 Aug 2024 09:33:57 +0200 Subject: [PATCH] :pencil2: Fixed enum being exported regularly --- src/api/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/index.ts b/src/api/index.ts index 24f60e6..7b15623 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -9,9 +9,9 @@ export { request } from './core/request'; export type { OpenAPIConfig } from './core/OpenAPI'; export type { AmplifyApplication } from './models/AmplifyApplication'; -export type { ApplicationCategory} from './models/ApplicationCategory' -export type { ContentTab} from './models/ContentTab' -export type { AccessRoles} from './models/AccessRoles' +export { ApplicationCategory} from './models/ApplicationCategory'; +export type { ContentTab} from './models/ContentTab'; +export type { AccessRoles} from './models/AccessRoles'; export type { FeatureAPIType } from 'src/api/models/FeatureAPIType'; export type { FeatureToggleDto } from './models/FeatureToggleDto'; export type { GraphUser } from './models/GraphUser';