UNPKG

288 BTypeScriptView Raw
1export type Json = string | number | boolean | null | {
2 [property: string]: Json;
3} | Json[];
4export interface Options {
5 parseEnvValues?: boolean;
6 secretConfig?: string;
7}
8export declare function loadConfig(dir?: string, options?: Options): {
9 [property: string]: Json;
10};