9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
/**
|
|
* The mode the Schlechtenburg editor is currently in
|
|
*/
|
|
export enum SbMode {
|
|
Edit = 'edit',
|
|
View = 'view',
|
|
}
|
|
export const SymMode = Symbol('Schlechtenburg mode');
|