uni-ticket-system/node_modules/licia/HashTable.d.ts

12 lines
240 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00: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;