摘要: 1.先定义类型 export type Observer = { next: (any) => void, complete?: (any) => void, } export interface OnSubscribeAction { (observer: Observer): void; } e 阅读全文
posted @ 2020-05-04 18:57 痴货 阅读(349) 评论(0) 推荐(0) 编辑