amis-rpc-design/node_modules/@react-native-community/cli-doctor/build/tools/windows/environmentVariables.d.ts
2023-10-07 19:42:30 +08:00

13 lines
548 B
TypeScript

/**
* Creates a new variable in the user's environment
*/
declare const setEnvironment: (variable: string, value: string) => Promise<void>;
/**
* Prepends the given `value` to the user's environment `variable`.
* @param {string} variable The environment variable to modify
* @param {string} value The value to add to the variable
* @returns {Promise<void>}
*/
declare const updateEnvironment: (variable: string, value: string) => Promise<void>;
export { setEnvironment, updateEnvironment };
//# sourceMappingURL=environmentVariables.d.ts.map