10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
|
|
declare function parseArgs(
|
||
|
|
args: string[],
|
||
|
|
options: {
|
||
|
|
names: any;
|
||
|
|
shorthands: any;
|
||
|
|
}
|
||
|
|
): any;
|
||
|
|
|
||
|
|
export = parseArgs;
|