vitest/packages/ui/types.ts
wheat 2961983dcb
feat(ui): initial ui implementation (#115)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2021-12-13 16:33:18 +08:00

12 lines
119 B
TypeScript

export interface WSMessage {
/**
* Message type
*/
type: string
/**
* Message Data
*/
data: any
}