patch-pulse
Version:
Check for outdated npm dependencies
11 lines • 368 B
TypeScript
/**
* Checks if any of the given flags are present in args
* @param args - The arguments to check
* @param flags - The flags to check for
* @returns True if any of the flags are present in args, false otherwise
*/
export declare function hasAnyFlag({ args, flags, }: {
args: string[];
flags: string[];
}): boolean;
//# sourceMappingURL=hasAnyFlag.d.ts.map