Update dependencies (#31)

This commit is contained in:
Piotr Rogowski 2022-01-15 15:37:43 +01:00 committed by GitHub
parent 33cd4e12ad
commit 8a664f7a0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 849 additions and 832 deletions

1648
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,7 @@
},
"devDependencies": {
"@speedy-tuner/eslint-config": "^0.1.2",
"@types/node": "^16.11.12",
"@types/node": "^17.0.8",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.5.3"

View File

@ -1,4 +1,3 @@
export * from './types/config';
export * from './types/logs';
export * from './types/state';
export * from './types/tune';

View File

@ -1,30 +0,0 @@
import { Logs } from './logs';
import { Config } from './config';
import { Tune } from './tune';
export interface ConfigState extends Config {}
export interface TuneState extends Tune {}
export interface LogsState extends Logs {}
export interface UIState {
sidebarCollapsed: boolean;
}
export interface StatusState {
text: string | null;
}
export interface AppState {
tune: TuneState;
config: ConfigState;
logs: LogsState,
ui: UIState;
status: StatusState;
}
export interface UpdateTunePayload {
name: string;
value: string | number;
}