libreccm-legacy/trunk-images/node_modules/jspm-config/dist/es5/error.d.ts

13 lines
345 B
TypeScript

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