Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 行
387 B
TypeScript
13 行
387 B
TypeScript
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;
|
|
}
|