Skip to content

Commit

Permalink
feat(thesaurus): add model
Browse files Browse the repository at this point in the history
  • Loading branch information
fgravin committed Dec 9, 2023
1 parent d041fe5 commit a65b3bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/common/domain/src/lib/model/thesaurus/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './thesaurus.model'
6 changes: 6 additions & 0 deletions libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export interface ThesaurusItemModel {
key: string
label: string
}

export type ThesaurusModel = ThesaurusItemModel[]

0 comments on commit a65b3bb

Please sign in to comment.