UNPKG

345 BTypeScriptView Raw
1import { BaseError } from 'make-error-cause';
2/**
3 * This error signifies there are issue with the jspm configuration.
4 */
5export declare class ConfigError extends BaseError {
6}
7/**
8 * This error signifies the module requested is not found.
9 */
10export declare class ModuleNotFoundError extends BaseError {
11 constructor(moduleName: string);
12}