Skip to content

Commit

Permalink
move section types to prep for conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Dec 27, 2024
1 parent 03a72b3 commit 0175346
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions arches_lingo/src/arches_lingo/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ interface ControlledListItemValue {
value: string;
}

export type SectionTypes =
| typeof SchemeLabel
| typeof SchemeNamespace
| typeof SchemeLicense
| typeof SchemeStandard
| typeof SchemeAuthority
| typeof SchemeNote;

export type DataComponentMode = typeof EDIT | typeof VIEW;

export interface SchemeNamespaceUpdate {
Expand Down Expand Up @@ -134,11 +142,3 @@ export interface SearchResultItem {
}[];
polyhierarchical: boolean;
}

export type SectionTypes =
| typeof SchemeLabel
| typeof SchemeNamespace
| typeof SchemeLicense
| typeof SchemeStandard
| typeof SchemeAuthority
| typeof SchemeNote;

0 comments on commit 0175346

Please sign in to comment.