UNPKG

@odoo/o-spreadsheet

Version:
11 lines (10 loc) 285 B
export declare class Registry<T> { content: Record<string, T>; add(key: string, value: T): this; replace(key: string, value: T): this; get(key: string): T; contains(key: string): boolean; getAll(): T[]; getKeys(): string[]; remove(key: string): void; }