@print-one/grapesjs
Version:
Free and Open Source Web Builder Framework
20 lines (17 loc) • 341 B
text/typescript
export interface UndoManagerConfig {
/**
* Maximum number of undo items.
* @default 500
*/
maximumStackLength?: number;
/**
* Track component selection.
* @default true
*/
trackSelection?: boolean;
}
const config: UndoManagerConfig = {
maximumStackLength: 500,
trackSelection: true,
};
export default config;