UNPKG

@halospv3/hce.shared-config

Version:

Automate commit message quality, changelogs, and CI/CD releases. Its `main` entry point is a Semantic Release config. Functions and classes are exposed for customization. An ESLint config, a Commitlint config, and addl. resources for .NET projects are als

15 lines 491 B
//#region src/CaseInsensitiveMap.d.ts /** * https://stackoverflow.com/a/50022230/14894786 * licensed under CC BY-SA 4.0 * changes: add overrides, remove "as any", remove empty lines */ declare class CaseInsensitiveMap<T, U> extends Map<T, U> { override delete(key: T): boolean; override get(key: T): U | undefined; override has(key: T): boolean; override set(key: T, value: U): this; } //#endregion export { CaseInsensitiveMap }; //# sourceMappingURL=CaseInsensitiveMap.d.mts.map