说我有这样的类型:
interface IAll {
foo: boolean,
bar: Function,
baz: number
}
而不是手动定义IAll
的所有可能的子类型,如下所示:
interface IAll1 {
foo: boolean,
bar: Function,
}
interface IAll2 {
bar: Function,
baz: number
}
interface IAll3 {
foo: boolean,
}
interface IAll4 {
foo: boolean,
}
...等
然后做
type IAll = IAll1 | IAll2 | IAll3 ... etc.
TypeScript是否有办法静态检查对象是否是另一个的子类型或子集?
这对于我们将多个子类型或子集组合成一个完整类型的情况非常有用。