/** * Module errors. * * @module */ /** Key not found in the bucket table */ export declare const ENOT_FOUND: { readonly code: 1; readonly name: "ENOT_FOUND"; readonly doc: "Key not found in the bucket table"; }; /** Bucket table capacity must be larger than 0 */ export declare const EZERO_CAPACITY: { readonly code: 2; readonly name: "EZERO_CAPACITY"; readonly doc: "Bucket table capacity must be larger than 0"; }; /** Cannot destroy non-empty hashmap */ export declare const ENOT_EMPTY: { readonly code: 3; readonly name: "ENOT_EMPTY"; readonly doc: "Cannot destroy non-empty hashmap"; }; /** Key already exists */ export declare const EALREADY_EXIST: { readonly code: 4; readonly name: "EALREADY_EXIST"; readonly doc: "Key already exists"; }; //# sourceMappingURL=errors.d.ts.map