mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
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>
14 lines
162 B
TypeScript
14 lines
162 B
TypeScript
export interface WSMessage {
|
|
/**
|
|
* Message type
|
|
*/
|
|
type: string
|
|
|
|
/**
|
|
* Message Data
|
|
*/
|
|
data: any
|
|
}
|
|
|
|
export type RunState = 'idle' | 'running'
|