UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

11 lines (8 loc) 156 B
interface JSONObject { [key: string]: any; } interface Message<T = JSONObject> { type: string; data: T; } type CallbackData<T> = (data: T) => void;