graphql-config
Version:
The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)
10 lines (9 loc) • 311 B
TypeScript
export declare function resolveRefString(str: string, values?: object): string;
export declare function resolveEnvsInValues<T extends {
[key: string]: any;
}>(config: T, env: {
[name: string]: string | undefined;
}): T;
export declare function getUsedEnvs(config: any): {
[name: string]: string;
};