UNPKG

snyk-config

Version:

Config setup for snyk shared across projects

11 lines (10 loc) 288 B
export type Json = string | number | boolean | null | { [property: string]: Json; } | Json[]; export interface Options { parseEnvValues?: boolean; secretConfig?: string; } export declare function loadConfig(dir?: string, options?: Options): { [property: string]: Json; };