diff options
author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-08-10 17:08:47 -0400 |
---|---|---|
committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-08-10 17:08:47 -0400 |
commit | 820d40eea4eeb5977889e0ef6c35f9092df44b4b (patch) | |
tree | a71eca4e766ccca46060e99b62071f0f9f22247e /src/client/documents/DocumentTypes.ts | |
parent | 6c349731fb84f1c44993d2bc55410da19db29a07 (diff) |
created placeholder loading box but have to get location of final doc to update with loading box
Diffstat (limited to 'src/client/documents/DocumentTypes.ts')
-rw-r--r-- | src/client/documents/DocumentTypes.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/documents/DocumentTypes.ts b/src/client/documents/DocumentTypes.ts index 9dfadf778..d99cd2dac 100644 --- a/src/client/documents/DocumentTypes.ts +++ b/src/client/documents/DocumentTypes.ts @@ -26,6 +26,7 @@ export enum DocumentType { FUNCPLOT = 'funcplot', // function plotter MAP = 'map', DATAVIZ = 'dataviz', + LOADING = 'loading', // special purpose wrappers that either take no data or are compositions of lower level types LINK = 'link', @@ -63,5 +64,5 @@ export enum CollectionViewType { Grid = 'grid', Pile = 'pileup', StackedTimeline = 'stacked timeline', - NoteTaking = "notetaking" + NoteTaking = 'notetaking', } |