mono/packages/cad/dist/print/slic3r.d.ts
2025-03-16 14:12:30 +01:00

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>;