ts 交集类型
Posted ajanuw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ts 交集类型相关的知识,希望对你有一定的参考价值。
type Event = {
name: string;
dateCreated: string;
type: string;
}
// error
type UserEvent extends Event = {
UserId: string;
}
// 交集类型
type UserEvent = Event & {UserId: string}
以上是关于ts 交集类型的主要内容,如果未能解决你的问题,请参考以下文章
已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段
已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段