UNPKG

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) 552 B
import { Command } from '../../../core/commands/Command'; import { HTMLEditor } from '../../../core/HTMLEditor'; export interface InsertLazyTableCommandOptions { url: string; format: 'json' | 'csv'; hasHeaders?: boolean; delimiter?: string; tableId?: string; } export declare class InsertLazyTableCommand implements Command { private options; private range; private editor; constructor(editor: HTMLEditor, options: InsertLazyTableCommandOptions, range: Range); execute(): void; private generateLazyScript; }