You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
387 B
TypeScript

3 months ago
export declare class FileMap<T> extends Map<string, T> {
private caseSensitive;
private originalFileNames;
constructor(caseSensitive: boolean);
keys(): MapIterator<string>;
get(key: string): T | undefined;
has(key: string): boolean;
set(key: string, value: T): this;
delete(key: string): boolean;
clear(): void;
normalizeId(id: string): string;
}