wrangler-action/node_modules/local-pkg/dist/shared.d.ts
2023-08-07 15:11:15 -05:00

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 };