UNPKG

@smooai/utils

Version:

A collection of shared utilities and tools used across SmooAI projects. This package provides common functionality to standardize and simplify development across all SmooAI repositories.

9 lines (7 loc) 228 B
declare class CaseInsensitiveMap<T, U> extends Map<T, U> { constructor(values?: Iterable<[T, U]>); set(key: T, value: U): this; get(key: T): U | undefined; has(key: T): boolean; } export { CaseInsensitiveMap };