osr-mono/packages/osr-sync/types.d.ts
2025-01-31 11:37:54 +01:00

15 lines
315 B
TypeScript

import * as CLI from 'yargs';
export type IDefaultCLIArgs = CLI.Arguments & {
source: any;
target: string;
module?: string;
profile?: any;
filter?: string;
root?: string;
verbose?: boolean;
cwd?: string;
alt?: boolean;
renamer?: string | Function;
content?: Function;
};