@leafer-ui/interface
Version:
@leafer-ui/interface
8 lines (6 loc) • 383 B
text/typescript
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
}