UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

12 lines (11 loc) 366 B
interface GetFlagBooleanValueProps { args: string[]; flag: string; } export declare const getFlagBooleanValue: ({ args, flag }: GetFlagBooleanValueProps) => boolean; interface GetFlagsBooleanValueProps { args: string[]; flags: string[]; } export declare const getFlagsBooleanValue: ({ args, flags }: GetFlagsBooleanValueProps) => boolean; export {};