@plastichub/osr-cad
Version:
This is a CLI(CommandLineInterface) toolset to convert 3D files, using Solidworks and other software.
7 lines (6 loc) • 605 B
TypeScript
import { SolidworkOptions } from '../types';
export declare const convertFile: (src: any, target: any, view: string, onNode: (data: any) => void, options: SolidworkOptions, configuration: string) => Promise<any>;
export declare function convertFiles(file: any, targets: string[], view: any, onNode: (data: any) => void, options: SolidworkOptions): Promise<void | any[]>;
export declare const report: (data: any, dst: string) => any;
export declare const targets: (f: string, options: SolidworkOptions) => any[];
export declare function convert(options: SolidworkOptions): Promise<(void | any[])[]>;