Files
blog/node_modules/warehouse/dist/error.d.ts
2025-07-16 16:30:56 +00:00

15 lines
349 B
TypeScript

declare class WarehouseError extends Error {
code?: string;
/**
* WarehouseError constructor
*
* @param {string} msg
* @param {string} code
*/
constructor(msg: string, code?: string);
static ID_EXIST: string;
static ID_NOT_EXIST: string;
static ID_UNDEFINED: string;
}
export default WarehouseError;