on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
18 lines (17 loc) • 560 B
TypeScript
import { Command } from '../../../core/commands/Command';
import { HTMLEditor } from '../../../core/HTMLEditor';
export interface EditLazyTableCommandOptions {
url?: string;
format?: 'json' | 'csv';
hasHeaders?: boolean;
delimiter?: string;
tableId?: string;
}
export declare class EditLazyTableCommand implements Command {
private editor;
private table;
constructor(editor: HTMLEditor, table: HTMLElement, _options?: EditLazyTableCommandOptions);
execute(): void;
private updateTable;
private generateLazyScript;
}