mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 10:03:24 +01:00
6 lines
293 B
TypeScript
6 lines
293 B
TypeScript
|
/**
|
||
|
* A helper function to compare two semver versions. If the second arg is greater than the first arg, it returns true.
|
||
|
*/
|
||
|
export declare function semverCompare(version1: string, version2: string): boolean;
|
||
|
export declare function checkWorkingDirectory(workingDirectory?: string): string;
|