Anthony Fu 88033bca99
feat: init @vitest/browser package (#1302)
Co-authored-by: Joaquín Sánchez Jiménez <joaquin.sanchez@fi2net.es>
Co-authored-by: userquin <userquin@gmail.com>
Co-authored-by: M. Bagher Abiat <zorofight94@gmail.com>
2022-07-20 03:37:45 +08:00

14 lines
162 B
TypeScript

export interface WSMessage {
/**
* Message type
*/
type: string
/**
* Message Data
*/
data: any
}
export type RunState = 'idle' | 'running'