export function entries(object: T): [keyof T, T[keyof T]][] { return Object.entries(object) as [keyof T, T[keyof T]][]; }