Preparing move to ui/viz

This commit is contained in:
Hugo Häggmark
2019-01-17 11:01:49 +01:00
parent 9dcf3d58ea
commit 554d010332
2 changed files with 21 additions and 6 deletions

View File

@@ -66,3 +66,10 @@ export interface RangeMap extends BaseMap {
from: string;
to: string;
}
export type Theme = 'dark' | 'light';
export enum Themes {
Dark = 'dark',
Light = 'light',
}