wrangler-action/dist/utils.d.ts

6 lines
293 B
TypeScript
Raw Normal View History

2024-11-05 21:47:01 +01:00
/**
* 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;