11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
declare class Caseless {
|
|
constructor(obj: any);
|
|
getKey(key: string): string | void;
|
|
set(key: string, val: any): void;
|
|
get(key: string): any;
|
|
remove(key: string): void;
|
|
has(key: string): boolean;
|
|
}
|
|
|
|
export = Caseless;
|