@plastichub/osr-cad
Version:
This is a CLI(CommandLineInterface) toolset to convert 3D files, using Solidworks and other software.
30 lines (29 loc) • 633 B
TypeScript
import * as CLI from 'yargs';
import { SolidworkOptions, SlicerOptions } from './';
export declare const defaultOptions: (yargs: CLI.Argv) => CLI.Argv<{
src: string;
} & {
dst: unknown;
} & {
Report: unknown;
} & {
debug: boolean;
} & {
alt: boolean;
} & {
skip: boolean;
} & {
dry: boolean;
} & {
verbose: boolean;
} & {
saveArgs: string;
} & {
saveAsProfile: string;
} & {
profile: string;
} & {
log: string;
}>;
export declare const sanitizeSingle: (argv: CLI.Arguments) => SolidworkOptions;
export declare const sanitize: (argv: any) => SlicerOptions;