parent
ecb59d8980
commit
106d7aa602
@ -1360,7 +1360,7 @@ const Row = (props: RowProps) => {
|
|||||||
type Capitalize<T extends string> = T extends `${infer U}${infer V}`
|
type Capitalize<T extends string> = T extends `${infer U}${infer V}`
|
||||||
? `${Uppercase<U>}${V}`
|
? `${Uppercase<U>}${V}`
|
||||||
: T
|
: T
|
||||||
type capitalized = Capitalize<"hello world"> // Hello World
|
type capitalized = Capitalize<"hello world"> // Hello world
|
||||||
```
|
```
|
||||||
|
|
||||||
也可以在 infer 中使用条件约束(`extends`)
|
也可以在 infer 中使用条件约束(`extends`)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user