github-pages-deploy-action/node_modules/graphql-config/lib/extensions/endpoints/resolveRefString.d.ts
2020-03-06 22:45:40 -05:00

10 lines
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;
};