UI for Zipcoin Blue

npm.d.ts 509B

12345678910
  1. import { BowerJson, PackageJson } from '../definitions';
  2. export declare const ERROR_INVALID_PACKAGE_JSON = "INVALID_PACKAGE_JSON";
  3. export declare const ERROR_INVALID_BOWER_JSON = "INVALID_BOWER_JSON";
  4. /**
  5. * Lightweight version of https://github.com/npm/validate-npm-package-name
  6. */
  7. export declare function isValidPackageName(name: string): boolean;
  8. export declare function readPackageJsonFile(path: string): Promise<PackageJson>;
  9. export declare function readBowerJsonFile(path: string): Promise<BowerJson>;