Time slots app prototype
 
 
 
 

4 lines
211 B

declare function loadPackageJSON(cwd?: string): Promise<Record<string, any> | null>;
declare function isPackageListed(name: string, cwd?: string): Promise<boolean>;
export { isPackageListed, loadPackageJSON };