mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-03-20 23:29:07 +01:00
4 lines
211 B
TypeScript
4 lines
211 B
TypeScript
declare function loadPackageJSON(cwd?: string): Promise<Record<string, any> | null>;
|
|
declare function isPackageListed(name: string, cwd?: string): Promise<boolean>;
|
|
|
|
export { isPackageListed, loadPackageJSON };
|