上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 468 下一页
摘要: Implement CapitalizeWords<T> which converts the first letter of each word of a string to uppercase and leaves the rest as-is. For example type capital 阅读全文
posted @ 2022-11-11 15:51 Zhentiw 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Implement the advanced util type OptionalKeys<T>, which picks all the optional keys into a union. /* _____________ Your Code Here _____________ */ typ 阅读全文
posted @ 2022-11-11 00:11 Zhentiw 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Implement the advanced util type RequiredKeys<T>, which picks all the required keys into a union. For example type Result = RequiredKeys<{ foo: number 阅读全文
posted @ 2022-11-11 00:07 Zhentiw 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Implement the advanced util type GetOptional<T>, which remains all the optional fields For example type I = GetOptional<{ foo: number, bar?: string }> 阅读全文
posted @ 2022-11-10 22:03 Zhentiw 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Implement the advanced util type GetRequired<T>, which remains all the required fields For example type I = GetRequired<{ foo: number, bar?: string }> 阅读全文
posted @ 2022-11-10 21:57 Zhentiw 阅读(29) 评论(0) 推荐(0) 编辑
摘要: type PathParams<S extends string> = S extends `/${string}/:${infer Param}/${infer REST}` ? Param | PathParams<`/${REST}`> : S extends `${string}/:${in 阅读全文
posted @ 2022-11-09 22:28 Zhentiw 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Implement the advanced util type UnionToIntersection<U> For example type I = Union2Intersection<'foo' | 42 | true> // expected to be 'foo' & 42 & true 阅读全文
posted @ 2022-11-09 17:22 Zhentiw 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Co-Variance: declare let b: string declare let c: string | number c = b // ✅ // string is a sub-type of string | number // all elements of string appe 阅读全文
posted @ 2022-11-09 17:18 Zhentiw 阅读(30) 评论(0) 推荐(0) 编辑
摘要: So what is a nake type? Example: type UnionToIntersection<T> = (T extends any ? (x: T) => any : never) //... We check Tin a sub-type condition, T exte 阅读全文
posted @ 2022-11-09 02:47 Zhentiw 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Implement Replace<S, From, To> which replace the string From with To once in the given string S For example type replaced = Replace<'types are fun!', 阅读全文
posted @ 2022-11-08 14:45 Zhentiw 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 468 下一页