/** * @param editor pointer to main editor object used to initialize * each command object with a reference to the editor * @constructor */ import { Editor } from "./editor.js"; declare class Command { undo(): void; execute(): void; id: number; inMemory: boolean; updatable: boolean; type: string; name: string; editor: Editor; constructor(editor: Editor); update(cmd: Command): void; } export { Command };