Files
midi-h5/uni_modules/UniDevTools/node_modules/licia/HashTable.d.ts

12 lines
240 B
TypeScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
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;