patch-pulse
Version:
Check for outdated npm dependencies
11 lines • 410 B
TypeScript
/**
* Filters out unknown arguments from the provided args array
* @param args - The arguments to filter
* @param validFlags - The list of valid flags
* @returns Array of unknown arguments (excluding those that come after skip flags)
*/
export declare function getUnknownArgs({ args, validFlags, }: {
args: string[];
validFlags: string[];
}): string[];
//# sourceMappingURL=getUnknownArgs.d.ts.map