declarations
Version:
[](https://www.npmjs.com/package/declarations)
12 lines (10 loc) • 431 B
TypeScript
// Type definitions for custom-error-generator 7.0.0
// Project: https://github.com/jproulx/node-custom-error
// Definitions by: Thierry Miceli <https://github.com/thmiceli>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "custom-error-generator" {
function createError(name: string, parameters?: Object, Constructor?: any): any;
namespace createError {
}
export = createError;
}