From 0175346431acf0ea8537ff6732cfcaea66671970 Mon Sep 17 00:00:00 2001 From: Aaron Gundel Date: Fri, 27 Dec 2024 10:19:46 -0700 Subject: [PATCH] move section types to prep for conflict --- arches_lingo/src/arches_lingo/types.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/arches_lingo/src/arches_lingo/types.ts b/arches_lingo/src/arches_lingo/types.ts index 898ca1b..ff6178b 100644 --- a/arches_lingo/src/arches_lingo/types.ts +++ b/arches_lingo/src/arches_lingo/types.ts @@ -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 { @@ -134,11 +142,3 @@ export interface SearchResultItem { }[]; polyhierarchical: boolean; } - -export type SectionTypes = - | typeof SchemeLabel - | typeof SchemeNamespace - | typeof SchemeLicense - | typeof SchemeStandard - | typeof SchemeAuthority - | typeof SchemeNote;