Complete residential site build with Docker Compose & Gitea Actions deployment
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user