mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
- Removed all the various eslint dependencies and added ts-standard - Updated Readme file with some minor changes - Updated dist folder to have one level again
13 lines
447 B
TypeScript
13 lines
447 B
TypeScript
/**
|
|
* A simple function for resolving the path the user entered
|
|
*/
|
|
export declare function resolveEnvFilePath(userPath: string): string;
|
|
/**
|
|
* A simple function that parses a comma separated string into an array of strings
|
|
*/
|
|
export declare function parseArgList(list: string): string[];
|
|
/**
|
|
* A simple function to test if the value is a promise
|
|
*/
|
|
export declare function isPromise(value: any | PromiseLike<Object>): value is Promise<any>;
|