schlechtenburg/packages/core/lib/mode.ts

9 lines
173 B
TypeScript
Raw Normal View History

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