mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at typescript-check 6 lines 121 B view raw
1export function choose<U, T extends Record<string, U>>( 2 value: keyof T, 3 choices: T, 4): U { 5 return choices[value] 6}