feat: Entires ts type

This commit is contained in:
2023-03-09 02:20:16 +09:00
parent deaf867314
commit 93c0c57258
+3
View File
@@ -0,0 +1,3 @@
export type Entries<T> = {
[K in keyof T]: [K, T[K]];
}[keyof T][];