We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9bf422 commit bdeb6b2Copy full SHA for bdeb6b2
1 file changed
src/store/slices/vmSlice.ts
@@ -1,12 +1,10 @@
1
import { createSlice, type PayloadAction } from '@reduxjs/toolkit';
2
-import { type V86Config } from 'v86';
3
4
export interface VMMetadata {
5
id: string;
6
state: 'creating' | 'running' | 'paused' | 'stopped' | 'error';
7
createdAt: string;
8
updatedAt?: string;
9
- config: V86Config;
10
error?: string;
11
}
12
0 commit comments