3 lines
69 B
TypeScript
3 lines
69 B
TypeScript
export type Entries<T> = {
|
|
[K in keyof T]: [K, T[K]];
|
|
}[keyof T][]; |