UNPKG

jspm-config

Version:
13 lines (12 loc) 345 B
import { BaseError } from 'make-error-cause'; /** * This error signifies there are issue with the jspm configuration. */ export declare class ConfigError extends BaseError { } /** * This error signifies the module requested is not found. */ export declare class ModuleNotFoundError extends BaseError { constructor(moduleName: string); }