TypeScript之定义类型 ( type )

键值对结构的对象

export type ValidationErrors = {
  [key: string]: any
};

联合类型(union type)

export type HttpEvent<T> =
    HttpSentEvent | HttpHeaderResponse | HttpResponse<T>| HttpProgressEvent | HttpUserEvent<T>;

 

posted on 2018-05-15 16:31  沙滩海风  阅读(11712)  评论(0)    收藏  举报

导航