/** * Represents the key of an object * @typeparam T the key type */ export interface IKey { /** * The key */ readonly key: T; }