@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
12 lines • 465 B
TypeScript
/**
* Takes two scripts as a string and returns the first
* if the current environment is windows, and the second
* if the current environment is not windows
*
* @param script - the script to use for windows
* @param altScript - the script to use for non-windows
*
* @return The bash script, first if system is windows, second if not.
*/
export declare const ifWindows: (script: string, altScript: string) => string;
//# sourceMappingURL=ifWindows.d.ts.map