@halospv3/hce.shared-config
Version:
Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.
12 lines • 387 B
TypeScript
/**
* https://stackoverflow.com/a/50022230/14894786
* licensed under CC BY-SA 4.0
* changes: add overrides, remove "as any", remove empty lines
*/
export declare class CaseInsensitiveMap<T, U> extends Map<T, U> {
delete(key: T): boolean;
get(key: T): U | undefined;
has(key: T): boolean;
set(key: T, value: U): this;
}
//# sourceMappingURL=CaseInsensitiveMap.d.ts.map