13 lines
345 B
TypeScript
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);
|
|
}
|