Don't store preset in local storage

This commit is contained in:
Farkas József
2016-10-12 21:07:22 +02:00
parent 6381f90111
commit b16e83fc30
4 changed files with 72 additions and 83 deletions

View File

@@ -1,10 +1,13 @@
import { UhkConfiguration } from '../../config-serializer/config-items/UhkConfiguration';
export class Electron {
initialState() {
getConfig(): UhkConfiguration {
// TODO implement load logic
return;
}
/* tslint:disable:no-unused-variable */
saveSate(reducer: any): any {
saveConfig(config: UhkConfiguration): void {
// TODO implement save logic
}
}