@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
12 lines (11 loc) • 372 B
TypeScript
interface GetFlagStringValueProps {
args: string[];
flag: string;
}
export declare const getFlagStringValue: ({ args, flag }: GetFlagStringValueProps) => string | null;
interface GetFlagsStringValueProps {
args: string[];
flags: string[];
}
export declare const getFlagsStringValue: ({ args, flags }: GetFlagsStringValueProps) => string | null;
export {};