Files
midi-h5/uni_modules/UniDevTools/node_modules/licia/HashTable.d.ts
2025-08-11 11:51:38 +08:00

12 lines
240 B
TypeScript

import has = require('./has');
declare class HashTable {
constructor(size?: number);
set(key: string, val: any): void;
get(key: string): any;
has(key: string): boolean;
delete(key: string): void;
}
export = HashTable;