/**
 * Defines a typed object entry
 */
export type Entry<T> = {
    [K in keyof T]: [K, T[K]];
}[keyof T];
