mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
6 lines
108 B
TypeScript
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];
|