UNPKG

@leafer-ui/interface

Version:
8 lines (6 loc) 383 B
import { ILeaf, IExportFileType, IExportOptions, IExportResult } from '@leafer/interface' export interface IExportModule { running?: boolean export(leaf: ILeaf, filename: IExportFileType | string, options?: IExportOptions | number | boolean): Promise<IExportResult> syncExport(leaf: ILeaf, filename: string, options?: IExportOptions | number | boolean): IExportResult }