jspm-config
Version:
Read jspm config and such
13 lines (12 loc) • 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);
}