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