snyk-docker-plugin
Version:
Snyk CLI docker plugin
8 lines (7 loc) • 459 B
TypeScript
import { PluginOptions } from "./types";
export { isTrue, isNumber, isStrictNumber };
declare function isTrue(value?: boolean | string): boolean;
declare function isNumber(value?: boolean | string): boolean;
declare function isStrictNumber(value?: boolean | string): boolean;
export declare function resolveNestedJarsOption(options?: Partial<PluginOptions>): string | boolean | undefined;
export declare function isDefined(value?: string | boolean): boolean;