UNPKG

@hufe921/canvas-editor-plugin-docx

Version:
11 lines (10 loc) 328 B
import { Command } from '@hufe921/canvas-editor'; export interface IExportDocxOption { fileName: string; } declare module '@hufe921/canvas-editor' { interface Command { executeExportDocx(options: IExportDocxOption): void; } } export default function (command: Command): (options: IExportDocxOption) => void;