mirror of https://github.com/buster-so/buster.git
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
export type FileType = 'metric' | 'dashboard' | 'reasoning'; //'dataset' | 'collection' | | 'term' | 'value'
|
|
|
|
export type ThoughtFileType =
|
|
| 'metric'
|
|
| 'dashboard'
|
|
| 'collection'
|
|
| 'dataset'
|
|
| 'term'
|
|
| 'value'
|
|
| 'empty';
|
|
|
|
export type AllFileTypes = ThoughtFileType | FileType;
|