mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
10 lines
311 B
TypeScript
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;
|
||
|
};
|