- 😊 ts中的访问修饰符
- 😊
const
和readonly
的区别 - 😊 枚举和常量枚举(
const
枚举)的区别 - 😊 ts中
interface
可以给Function
/Array
/Class
做声明吗? - ts中的this和js中的this有什么差异?
- 😊 ts中如何枚举联合类型的key?
- 😊 ts中
?.
、??
、!.
、_
、**
等符号的含义? - 😊 TS是基于结构类型兼容
- 😊
const
断言 - 😊
type
和interface
的区别 - 😊
implements
与extends
的区别 - 😊 枚举和
object
的区别 - 😊
never
,void
的区别 unknown
,any
的区别- 😊 如何在
window
扩展类型 - 复杂的类型推导题目
- 🤔
implement UnionToIntersection
- 😊
implement Add<A, B>
- 😊
implement SmallerThan<A, B>
- 😊
implement LargerThan<A, B>
- 😊
implement IsAny
- 😊
implement Filter<T, A>
- 😊
implement TupleToString
- 😊
implement RepeatString<T, C>
- 😊
implement Push<T, I>
- 😊
implement Flat
- 😊
implement Shift
- 😊
implement Repeat<T, C>
- 😊
implement ReverseTuple
- 😊
implement UnwrapPromise
- 😊
implement LengthOfString
- 😊
implement StringToTuple
- 😊
implement LengthOfTuple
- 😊
implement LastItem
- 😊
implement FirstItem
- 😊
implement FirstChar
- 😊
implement Pick<T, K>
- 😊
implement Readonly
- 😊
implement Record<K, V>
- 🤔️
implement Exclude
- 🤔️
implement Extract<T, U>
- 😊
implement Omit<T, K>
- 😊
implement NonNullable
- 😊
implement Parameters
- 😊
implement ConstructorParameters
- 😊
implement ReturnType
- 😊
implement InstanceType
- 😊
implement ThisParameterType
- 😊
implement TupleToUnion
- 😊
implement Partial
- 😊
Required
- 😊
implement LastChar
- 😊
implement IsNever
- 😊
implement KeysToUnion
- 😊
implement ValuesToUnion
FindIndex<T, E>
implement Trim
- 🤔
😊 ts中的访问修饰符
const
用于变量,readonly
用于属性const
在运行时检查,readonly
在编译时检查使用
const
变量保存的数组,可以使用push
,pop
等方法。但是如果使用ReadonlyArray<number>
声明的数组不能使用push
,pop
等方法。😊 枚举和常量枚举(
const
枚举)的区别枚举会被编译时会编译成一个对象,可以被当作对象使用
const
枚举会在ts编译期间被删除,避免额外的性能开销// 普通枚举
enum Witcher {
Ciri = 'Queen',
Geralt = 'Geralt of Rivia'
}
function getGeraltMessage(arg: {[key: string]: string}): string {
return arg.Geralt
}
getGeraltMessage(Witcher) // Geralt of Rivia
// const枚举
const enum Witcher {
Ciri = 'Queen',
Geralt = 'Geralt of Rivia'
}
const witchers: Witcher[] = [Witcher.Ciri, Witcher.Geralt]
// 编译后
// const witchers = ['Queen', 'Geralt of Rivia'
😊 ts中
interface
可以给Function
/Array
/Class
做声明吗?
```typescript // Array interface StringArray {// 函数类型
interface SearchFunc {
(source: string, subString: string): boolean;
}
let mySearch: SearchFunc;
mySearch = function(source: string, subString: string) {
let result = source.search(subString);
return result > -1;
}
}
let myArray: StringArray; myArray = [“Bob”, “Fred”];
```typescript
// Class, constructor存在于类的静态部分,所以不会检查
interface ClockInterface {
currentTime: Date;
setTime(d: Date);
}
class Clock implements ClockInterface {
currentTime: Date;
setTime(d: Date) {
this.currentTime = d;
}
constructor(h: number, m: number) { }
}
ts中的this和js中的this有什么差异?
😊 ts中如何枚举联合类型的key?
type Name = { name: string }
type Age = { age: number }
type Union = Name | Age
type UnionKey<P> = P extends infer P ? keyof P : never
type T = UnionKey<Union>
😊 ts中 ?.
、??
、!.
、_
、**
等符号的含义?
?.
可选链??
??
类似与短路或,??
避免了一些意外情况0,NaN
以及””,false被视为false值。只有undefind,null被视为false值。!.
在变量名后添加!,可以断言排除undefined
和null
类型_
, 声明该函数将被传递一个参数,但您并不关心它**
求幂!:
,待会分配这个变量,ts不要担心 ```typescript // ?? let x = foo ?? bar(); // 等价于 let x = foo !== null && foo !== undefined ? foo : bar();
// !. let a: string | null | undefined a.length // error a!.length // ok
<a name="HVae4"></a>
## 😊 什么是抗变、双变、协变和逆变?
- Covariant 协变,TS对象兼容性是协变,父类 <= 子类,是可以的。子类 <= 父类,错误。
- Contravariant 逆变,禁用`strictFunctionTypes`编译,函数参数类型是逆变的,父类 <= 子类,是错误。子类 <= 父类,是可以的。
- Bivariant 双向协变,函数参数的类型默认是双向协变的。父类 <= 子类,是可以的。子类 <= 父类,是可以的。
<a name="L0aR2"></a>
## 😊 ts中同名的interface或者同名的interface和class可以合并吗?
1. `interface`会合并
1. `class`不可以合并
<a name="TLwji"></a>
## 😊 如何使ts项目引入并识别编译为js的npm库包?
1. `npm install @types/xxxx`
1. 自己添加描述文件
<a name="WQjhj"></a>
## 😊 ts如何自动生成库包的声明文件?
可以配置tsconfig.json文件中的`declaration`和`outDir`
1. `declaration: true`, 将会自动生成声明文件
1. `outDir: ''`, 指定目录
<a name="IYwuk"></a>
## 😊 什么是泛型
泛型用来来创建可重用的组件,一个组件可以支持多种类型的数据。这样用户就可以以自己的数据类型来使用组件。简单的说,“泛型就是把类型当成参数”。
<a name="vroOy"></a>
## 😊 `-?`,`-readonly` 是什么含义
用于删除修饰符
```typescript
type A = {
a: string;
b: number;
}
type B = {
[K in keyof A]?: A[K]
}
type C = {
[K in keyof B]-?: B[K]
}
type D = {
readonly [K in keyof A]: A[K]
}
type E = {
-readonly [K in keyof A]: A[K]
}
😊 TS是基于结构类型兼容
typescript的类型兼容是基于结构的,不是基于名义的。下面的代码在ts中是完全可以的,但在java等基于名义的语言则会抛错。
interface Named { name: string }
class Person {
name: string
}
let p: Named
// ok
p = new Person()
😊 const
断言
const
断言,typescript会为变量添加一个自身的字面量类型
- 对象字面量的属性,获得
readonly
的属性,成为只读属性 - 数组字面量成为
readonly tuple
只读元组 字面量类型不能被扩展(比如从hello类型到string类型)
// type '"hello"'
let x = "hello" as const
// type 'readonly [10, 20]'
let y = [10, 20] as const
// type '{ readonly text: "hello" }'
let z = { text: "hello" } as const
😊
type
和interface
的区别类型别名可以为任何类型引入名称。例如基本类型,联合类型等
- 类型别名不支持继承
- 类型别名不会创建一个真正的名字
- 类型别名无法被实现(
implements
),而接口可以被派生类实现 - 类型别名重名时编译器会抛出错误,接口重名时会产生合并
😊
implements
与extends
的区别
- 枚举可以通过枚举的名称,获取枚举的值。也可以通过枚举的值获取枚举的名称。
- object只能通过key获取value
- 数字枚举在不指定初始值的情况下,枚举值会从0开始递增。
- 虽然在运行时,枚举是一个真实存在的对象。但是使用keyof时的行为却和普通对象不一致。必须使用
keyof
typeof
才可以获取枚举所有属性名。😊
never
,void
的区别
never
,never
表示永远不存在的类型。比如一个函数总是抛出错误,而没有返回值。或者一个函数内部有死循环,永远不会有返回值。函数的返回值就是never
类型。void
,没有显示的返回值的函数返回值为void
类型。如果一个变量为void
类型,只能赋予undefined
或者null
。unknown
,any
的区别unknown
类型和any
类型类似。与any
类型不同的是。unknown
类型可以接受任意类型赋值,但是unknown
类型赋值给其他类型前,必须被断言😊 如何在
window
扩展类型declare global {
interface Window {
myCustomFn: () => void;
}
}
复杂的类型推导题目
🤔
```typescript type A = UnionToIntersection<{a: string} | {b: string} | {c: string}> // {a: string} & {b: string} & {c: string}implement UnionToIntersection
// 实现UnionToIntersection
<a name="slNAA"></a>
### 😊 `implement ToNumber`
```typescript
type A = ToNumber<'1'> // 1
type B = ToNumber<'40'> // 40
type C = ToNumber<'0'> // 0
// 实现ToNumber
type ToNumber<T extends string, R extends any[] = []> =
T extends `${R['length']}` ? R['length'] : ToNumber<T, [1, ...R]>;
😊 implement Add<A, B>
type A = Add<1, 2> // 3
type B = Add<0, 0> // 0
// 实现ADD
type NumberToArray<T, R extends any[]> = T extends R['length'] ? R : NumberToArray<T, [1, ...R]>
type Add<T, R> = [...NumberToArray<T, []>, ...NumberToArray<R, []>]['length']
😊 implement SmallerThan<A, B>
type A = SmallerThan<0, 1> // true
type B = SmallerThan<1, 0> // false
type C = SmallerThan<10, 9> // false
// 实现SmallerThan
type SmallerThan<N extends number, M extends number, L extends any[] = [], R extends any[] = []> =
N extends L['length'] ?
M extends R['length'] ? false : true
:
M extends R['length'] ? false : SmallerThan<N, M, [1, ...L], [1, ...R]>;
😊 implement LargerThan<A, B>
type A = LargerThan<0, 1> // false
type B = LargerThan<1, 0> // true
type C = LargerThan<10, 9> // true
// 实现LargerThan
type LargerThan<N extends number, M extends number, L extends any[] = [], R extends any[] = []> =
N extends L['length'] ?
false : M extends R['length'] ?
true : LargerThan<N, M, [1, ...L], [1, ...R]>;
😊 implement IsAny
type A = IsAny<string> // false
type B = IsAny<any> // true
type C = IsAny<unknown> // false
type D = IsAny<never> // false
// 实现IsAny
type IsAny<T> = true extends (T extends never ? true : false) ?
false extends (T extends never ? true : false) ?
true
:
false
:
false;
// 更简单的实现
type IsAny<T> = 0 extends (T & 1) ? true : false;
😊 implement Filter<T, A>
type A = Filter<[1,'BFE', 2, true, 'dev'], number> // [1, 2]
type B = Filter<[1,'BFE', 2, true, 'dev'], string> // ['BFE', 'dev']
type C = Filter<[1,'BFE', 2, any, 'dev'], string> // ['BFE', any, 'dev']
// 实现Filter
type Filter<T extends any[], A, N extends any[] = []> =
T extends [infer P, ...infer Q] ?
0 extends (P & 1) ? Filter<Q, A, [...N, P]> :
P extends A ? Filter<Q, A, [...N, P]> : Filter<Q, A, N>
: N;
😊 implement TupleToString
type A = TupleToString<['a']> // 'a'
type B = TupleToString<['B', 'F', 'E']> // 'BFE'
type C = TupleToString<[]> // ''
// 实现TupleToString
type TupleToString<T extends any[], S extends string = '', A extends any[] = []> =
A['length'] extends T['length'] ? S : TupleToString<T, `${S}${T[A['length']]}`, [1, ...A]>
😊 implement RepeatString<T, C>
type A = RepeatString<'a', 3> // 'aaa'
type B = RepeatString<'a', 0> // ''
// 实现RepeatString
type RepeatString<T extends string, C extends number, S extends string = '', A extends any[] = []> =
A['length'] extends C ? S : RepeatString<T, C, `${T}${S}`, [1, ...A]>
😊 implement Push<T, I>
type A = Push<[1,2,3], 4> // [1,2,3,4]
type B = Push<[1], 2> // [1, 2]
type C = Push<[], string> // [string]
// 实现Push
type Push<T extends any[], I> = T extends [...infer P] ? [...P, I] : [I]
😊 implement Flat
type A = Flat<[1,2,3]> // [1,2,3]
type B = Flat<[1,[2,3], [4,[5,[6]]]]> // [1,2,3,4,5,6]
type C = Flat<[]> // []
// 实现Flat
type Flat<T extends any[]> =
T extends [infer P, ...infer Q] ?
P extends any[] ? [...Flat<P>, ...Flat<Q>] : [P, ...Flat<Q>]
: [];
😊 implement Shift
type A = Shift<[1,2,3]> // [2,3]
type B = Shift<[1]> // []
type C = Shift<[]> // []
// 实现Shift
type Shift<T extends any[]> = T extends [infer P, ...infer Q] ? [...Q] : [];
😊 implement Repeat<T, C>
type A = Repeat<number, 3> // [number, number, number]
type B = Repeat<string, 2> // [string, string]
type C = Repeat<1, 1> // [1, 1]
type D = Repeat<0, 0> // []
// 实现Repeat
type Repeat<T, C, R extends any[] = []> =
R['length'] extends C ? R : Repeat<T, C, [...R, T]>
😊 implement ReverseTuple
type A = ReverseTuple<[string, number, boolean]> // [boolean, number, string]
type B = ReverseTuple<[1,2,3]> // [3,2,1]
type C = ReverseTuple<[]> // []
// 实现ReverseTuple
type ReverseTuple<T extends any[], A extends any[] = []> =
T extends [...infer Q, infer P] ?
A['length'] extends T['length'] ? A : ReverseTuple<Q, [...A, P]>
: A;
😊 implement UnwrapPromise
type A = UnwrapPromise<Promise<string>> // string
type B = UnwrapPromise<Promise<null>> // null
type C = UnwrapPromise<null> // Error
// 实现UnwrapPromise
type UnwrapPromise<T> = T extends Promise<infer P> ? P : Error;
😊 implement LengthOfString
type A = LengthOfString<'BFE.dev'> // 7
type B = LengthOfString<''> // 0
// 实现LengthOfString
type LengthOfString<T extends string, A extends any[] = []> =
T extends `${infer P}${infer Q}` ? LengthOfString<Q, [1, ...A]> : A['length']
😊 implement StringToTuple
type A = StringToTuple<'BFE.dev'> // ['B', 'F', 'E', '.', 'd', 'e','v']
type B = StringToTuple<''> // []
// 实现
type StringToTuple<T extends string, A extends any[] = []> =
T extends `${infer K}${infer P}` ? StringToTuple<P, [...A, K]> : A;
😊 implement LengthOfTuple
type A = LengthOfTuple<['B', 'F', 'E']> // 3
type B = LengthOfTuple<[]> // 0
// 实现
type LengthOfTuple<T extends any[], R extends any[] = []> =
R['length'] extends T['length'] ? R['length'] : LengthOfTuple<T, [...R, 1]>
😊 implement LastItem
type A = LastItem<[string, number, boolean]> // boolean
type B = LastItem<['B', 'F', 'E']> // 'E'
type C = LastItem<[]> // never
// 实现LastItem
type LastItem<T> = T extends [...infer P, infer Q] ? Q : never;
😊 implement FirstItem
type A = FirstItem<[string, number, boolean]> // string
type B = FirstItem<['B', 'F', 'E']> // 'B'
// 实现FirstItem
type FirstItem<T> = T extends [infer P, ...infer Q] ? P : never;
😊 implement FirstChar
type A = FirstChar<'BFE'> // 'B'
type B = FirstChar<'dev'> // 'd'
type C = FirstChar<''> // never
// 实现FirstChar
type FirstChar<T> = T extends `${infer P}${infer Q}` ? P : never;
😊 implement Pick<T, K>
type Foo = {
a: string
b: number
c: boolean
}
type A = MyPick<Foo, 'a' | 'b'> // {a: string, b: number}
type B = MyPick<Foo, 'c'> // {c: boolean}
type C = MyPick<Foo, 'd'> // Error
// 实现MyPick<T, K>
type MyPick<T, K extends keyof T> = {
[Key in K]: T[Key]
}
😊 implement Readonly
type Foo = {
a: string
}
const a:Foo = {
a: 'BFE.dev',
}
a.a = 'bigfrontend.dev'
// OK
const b:MyReadonly<Foo> = {
a: 'BFE.dev'
}
b.a = 'bigfrontend.dev'
// Error
// 实现MyReadonly
type MyReadonly<T> = {
readonly [K in keyof T]: T[K]
}
😊 implement Record<K, V>
type Key = 'a' | 'b' | 'c'
const a: Record<Key, string> = {
a: 'BFE.dev',
b: 'BFE.dev',
c: 'BFE.dev'
}
a.a = 'bigfrontend.dev' // OK
a.b = 123 // Error
a.d = 'BFE.dev' // Error
type Foo = MyRecord<{a: string}, string> // Error
// 实现MyRecord
type MyRecord<K extends number | string | symbol, V> = {
[Key in K]: V
}
🤔️ implement Exclude
type Foo = 'a' | 'b' | 'c'
type A = MyExclude<Foo, 'a'> // 'b' | 'c'
type B = MyExclude<Foo, 'c'> // 'a' | 'b
type C = MyExclude<Foo, 'c' | 'd'> // 'a' | 'b'
type D = MyExclude<Foo, 'a' | 'b' | 'c'> // never
// 实现 MyExclude<T, K>
type MyExclude<T, K> = T extends K ? never : T;
🤔️ implement Extract<T, U>
type Foo = 'a' | 'b' | 'c'
type A = MyExtract<Foo, 'a'> // 'a'
type B = MyExtract<Foo, 'a' | 'b'> // 'a' | 'b'
type C = MyExtract<Foo, 'b' | 'c' | 'd' | 'e'> // 'b' | 'c'
type D = MyExtract<Foo, never> // never
// 实现MyExtract<T, U>
type MyExtract<T, U> = T extends U ? T : never
😊 implement Omit<T, K>
type Foo = {
a: string
b: number
c: boolean
}
type A = MyOmit<Foo, 'a' | 'b'> // {c: boolean}
type B = MyOmit<Foo, 'c'> // {a: string, b: number}
type C = MyOmit<Foo, 'c' | 'd'> // {a: string, b: number}
// 实现MyOmit
type MyOmit<T, K extends number | string | symbol> = {
[Key in Exclude<keyof T, K>]: T[Key]
}
type MyOmit<T, K extends number | string | symbol> = Pick<T, Exclude<keyof T, K>>
😊 implement NonNullable
type Foo = 'a' | 'b' | null | undefined
type A = MyNonNullable<Foo> // 'a' | 'b'
// 实现NonNullable
type MyNonNullable<T> = T extends null | undefined ? never : T;
😊 implement Parameters
type Foo = (a: string, b: number, c: boolean) => string
type A = MyParameters<Foo> // [a:string, b: number, c:boolean]
type B = A[0] // string
type C = MyParameters<{a: string}> // Error
// 实现MyParameters<T>
type MyParameters<T extends (...params: any[]) => any> =
T extends (...params: [...infer P]) => any ? P : never
😊 implement ConstructorParameters
class Foo {
constructor (a: string, b: number, c: boolean) {}
}
type C = MyConstructorParameters<typeof Foo>
// [a: string, b: number, c: boolean]
// 实现MyConstructorParameters<T>
type MyConstructorParameters<T extends new (...params: any[]) => any> =
T extends new (...params: [...infer P]) => any ? P : never
😊 implement ReturnType
type Foo = () => {a: string}
type A = MyReturnType<Foo> // {a: string}
// 实现MyReturnType<T>
type MyReturnType<T extends (...params: any[]) => any> =
T extends (...params: any[]) => infer P ? P : never;
😊 implement InstanceType
class Foo {}
type A = MyInstanceType<typeof Foo> // Foo
type B = MyInstanceType<() => string> // Error
// 实现MyInstanceType<T>
type MyInstanceType<T extends new (...params: any[]) => any> =
T extends new (...params: any[]) => infer P ? P : never;
😊 implement ThisParameterType
function Foo(this: {a: string}) {}
function Bar() {}
type A = MyThisParameterType<typeof Foo> // {a: string}
type B = MyThisParameterType<typeof Bar> // unknown
// 实现MyThisParameterType<T>
type MyThisParameterType<T extends (this: any, ...params: any[]) => any> =
T extends (this: infer P, ...params: any[]) => any ? P : unknown;
😊 implement TupleToUnion
type Foo = [string, number, boolean]
type Bar = TupleToUnion<Foo> // string | number | boolean
// 实现TupleToUnion<T>
type TupleToUnion<T extends any[], R = T[0]> =
T extends [infer P, ...infer Q] ? TupleToUnion<Q, R | P> : R;
// 其他回答
type TupleToUnion<T extends any[]> = T[number]
😊 implement Partial
type Foo = {
a: string
b: number
c: boolean
}
// below are all valid
const a: MyPartial<Foo> = {}
const b: MyPartial<Foo> = {
a: 'BFE.dev'
}
const c: MyPartial<Foo> = {
b: 123
}
const d: MyPartial<Foo> = {
b: 123,
c: true
}
const e: MyPartial<Foo> = {
a: 'BFE.dev',
b: 123,
c: true
}
// 实现MyPartial<T>
type MyPartial<T> = {
[K in keyof T]?: T[K]
}
😊 Required
// all properties are optional
type Foo = {
a?: string
b?: number
c?: boolean
}
const a: MyRequired<Foo> = {}
// Error
const b: MyRequired<Foo> = {
a: 'BFE.dev'
}
// Error
const c: MyRequired<Foo> = {
b: 123
}
// Error
const d: MyRequired<Foo> = {
b: 123,
c: true
}
// Error
const e: MyRequired<Foo> = {
a: 'BFE.dev',
b: 123,
c: true
}
// valid
// 实现MyRequired<T>
type MyRequired<T> = {
[K in keyof T]-?: T[K]
}
😊 implement LastChar
type A = LastChar<'BFE'> // 'E'
type B = LastChar<'dev'> // 'v'
type C = LastChar<''> // never
// 实现FirstChar<T>
type LastChar<T extends string, A extends string[] = []> =
T extends `${infer P}${infer Q}` ? LastChar<Q, [...A, P]> :
A extends [...infer L, infer R] ? R : never
;
😊 implement IsNever
// https://stackoverflow.com/questions/53984650/typescript-never-type-inconsistently-matched-in-conditional-type
// https://www.typescriptlang.org/docs/handbook/advanced-types.html#v
type A = IsNever<never> // true
type B = IsNever<string> // false
type C = IsNever<undefined> // false
// 实现IsNever<T>
type IsNever<T> = [T] extends [never] ? true : false;
😊 implement KeysToUnion
type A = KeyToUnion<{
a: string;
b: number;
c: symbol;
}>
// 'a' | 'b' | 'c'
// 实现KeyToUnion
type KeyToUnion<T> = {
[K in keyof T]: K;
}[keyof T]
😊 implement ValuesToUnion
type A = ValuesToUnion<{
a: string;
b: number;
c: symbol;
}>
// string | number | symbol
// ValuesToUnion
type ValuesToUnion<T> = T[keyof T]
FindIndex<T, E>
type IsAny<T> = 0 extends (T & 1) ? true : false;
type IsNever<T> = [T] extends [never] ? true : false;
type TwoAny<A, B> = IsAny<A> extends IsAny<B> ? IsAny<A> : false;
type TwoNever<A, B> = IsNever<A> extends IsNever<B> ? IsNever<A> : false;
type SingleAny<A, B> = IsAny<A> extends true ? true : IsAny<B>
type SingleNever<A, B> = IsNever<A> extends true ? true : IsNever<B>
type FindIndex<T extends any[], E, A extends any[] = []> =
T extends [infer P, ...infer Q] ?
TwoAny<P, E> extends true ?
A['length']
:
TwoNever<P, E> extends true ?
A['length']
:
SingleAny<P, E> extends true ?
FindIndex<Q, E, [1, ...A]>
:
SingleNever<P, E> extends true ?
FindIndex<Q, E, [1, ...A]>
:
P extends E ? A['length'] : FindIndex<Q, E, [1, ...A]>
:
never
implement Trim
type A = Trim<' BFE.dev'> // 'BFE'
type B = Trim<' BFE. dev '> // 'BFE. dev'
type C = Trim<' BFE . dev '> // 'BFE . dev'
type StringToTuple<T extends string, A extends any[] = []> =
T extends `${infer K}${infer P}` ? StringToTuple<P, [...A, K]> : A;
type TupleToString<T extends any[], S extends string = '', A extends any[] = []> =
A['length'] extends T['length'] ? S : TupleToString<T, `${S}${T[A['length']]}`, [1, ...A]>
type Trim<T extends string, A extends any[] = StringToTuple<T>> =
A extends [infer P, ...infer Q] ?
P extends ' ' ?
Trim<T, Q>
:
A extends [...infer M, infer N] ?
N extends ' ' ?
Trim<T, M>
:
TupleToString<A>
:
''
:
'';
还有更多 UnionToTuple
, IntersectionToUnion
?