github-pages-deploy-action/node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts

10 lines
311 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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;
};