f15fd9f060
- Wire presentationConverter (pptx read/write via pptxgenjs+jszip) - Add fontConverter (ttf/otf/woff/woff2 via opentype.js + woff2-encoder) - Add PSD support via ag-psd in imageConverter - Add spreadsheetConverter (xlsx/xls/ods via SheetJS) - Add ebookConverter (epub via jszip) - Expand data converter with ini/env/properties/ndjson/jsonl/sql formats - Add context-aware previews for pptx, epub, fonts, and psd in PreviewModal - Remove unsupported .doc extension from fileDetector - Replace Node-only wawoff2 with browser-compatible woff2-encoder
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
declare module 'heic2any' {
|
|
interface HeicOptions {
|
|
blob: Blob;
|
|
toType?: string;
|
|
quality?: number;
|
|
gifInterval?: number;
|
|
}
|
|
|
|
function heic2any(options: HeicOptions): Promise<Blob | Blob[]>;
|
|
export default heic2any;
|
|
}
|