Files
core_ng/server/util/Entries.ts
T
2023-08-05 12:12:18 +00:00

3 lines
69 B
TypeScript

export type Entries<T> = {
[K in keyof T]: [K, T[K]];
}[keyof T][];