schlechtenburg/packages/core/lib/mode.ts

9 lines
173 B
TypeScript
Raw Normal View History

2022-03-16 00:38:33 +01:00
/**
* The mode the Schlechtenburg editor is currently in
*/
2020-12-30 02:32:46 +01:00
export enum SbMode {
Edit = 'edit',
2022-03-20 14:49:44 +01:00
View = 'view',
2020-12-30 02:32:46 +01:00
}
2022-03-16 00:38:33 +01:00
export const SymMode = Symbol('Schlechtenburg mode');