-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[2주차] Easy 풀이 #4
Comments
type MyPick<T, K extends keyof T> = { |
type MyReadonly = { |
type TupleToObject<T extends readonly any[]> = { |
type First<T extends any[]> = T extends []? never : T[0] |
type Length<T extends readonly unknown[]> = T["length"] |
type If<C, T, F> = C extends true?T:F |
type Concat<T extends any [], U extends any []> = [...T, ...U] |
type Includes<T extends readonly any[], U> = |
type Push<T extends any [], U> = [...T, U] |
type Unshift<T extends any [], U> = [U, ...T] |
type MyParameters<T extends (...args: any[]) => any> = T extends (...args: infer A) => any? A : never; |
No description provided.
The text was updated successfully, but these errors were encountered: