Skip to content

Commit

Permalink
feat: Add export of BravoEntity types in the entryfile, so that they'…
Browse files Browse the repository at this point in the history
…re more accessible.
  • Loading branch information
adam-coster committed Sep 22, 2021
1 parent c84b442 commit ab834c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export * from './lib/BravoClient.js';
export * from './types/FavroApi.js';

export * as BravoEntities from './types/Bravo.js';
8 changes: 8 additions & 0 deletions src/types/Bravo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export type { BravoCardInstance } from '$lib/entities/BravoCard';
export type { BravoCollection } from '$lib/entities/BravoCollection';
export type { BravoColumn } from '$lib/entities/BravoColumn';
export type { BravoCustomField } from '$lib/entities/BravoCustomField';
export type { BravoOrganization } from '$lib/entities/BravoOrganization';
export type { BravoTagDefinition } from '$lib/entities/BravoTag';
export type { BravoUser } from '$lib/entities/BravoUser';
export type { BravoWidget } from '$lib/entities/BravoWidget';

0 comments on commit ab834c1

Please sign in to comment.