Skip to content

Commit

Permalink
✏️ Fixed enum being exported regularly
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakihle committed Aug 9, 2024
1 parent dd8cb69 commit 80f2c0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 80f2c0d

Please sign in to comment.