Files
youtube-music/utils/type-utils.ts
JellyBrick 82bcadcd64 feat: typescript part 1
Co-authored-by: Su-Yong <simssy2205@gmail.com>
2023-09-03 00:25:48 +09:00

6 lines
108 B
TypeScript

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