10 lines
706 B
TypeScript
10 lines
706 B
TypeScript
import { SlicerOptions } from '../types.js';
|
|
export declare const fileAsBuffer: (path: string) => any;
|
|
export declare const getSlicrDir: (options: SlicerOptions) => any;
|
|
export declare const getBin: (options: SlicerOptions) => any;
|
|
export declare const convertFile: (file: any, target: any, onNode: (data: any) => void, options: SlicerOptions) => Promise<any>;
|
|
export declare function convertFiles(file: any, targets: string[], onNode: (data: any) => void, options: SlicerOptions): Promise<any>;
|
|
export declare const report: (data: any, dst: string) => any;
|
|
export declare const targets: (f: string, options: SlicerOptions) => any[];
|
|
export declare function convert(options: SlicerOptions): Promise<void>;
|