Skip to content

Instantly share code, notes, and snippets.

View DarkoKukovec's full-sized avatar

Darko Kukovec DarkoKukovec

View GitHub Profile
@DarkoKukovec
DarkoKukovec / enum.ts
Last active December 29, 2019 16:13 — forked from rauschma/enum.ts
interface IEnum<T = void> {
key: string;
value: T;
}
interface IEnumConstructor<T = void> {
new(value: T): IEnum<T>;
enumKeys: Set<string>;
enumValues: Set<IEnum<T>>;
}