UNPKG

95 BTypeScriptView Raw
1/**
2 * @publicApi
3 */
4export interface WsResponse<T = any> {
5 event: string;
6 data: T;
7}