键值对结构的对象
export type ValidationErrors = {
[key: string]: any
};
联合类型(union type)
export type HttpEvent<T> =
HttpSentEvent | HttpHeaderResponse | HttpResponse<T>| HttpProgressEvent | HttpUserEvent<T>;
2024-03-18 23:11:52
export type ValidationErrors = {
[key: string]: any
};
export type HttpEvent<T> =
HttpSentEvent | HttpHeaderResponse | HttpResponse<T>| HttpProgressEvent | HttpUserEvent<T>;
下一篇:1、Netty 实战入门详解