spec updates

This commit is contained in:
Drew Ansbacher
2021-09-13 18:06:02 +02:00
committed by Aiden McClelland
parent c21ebd2c5e
commit 77495cb674
9 changed files with 66 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
import { Injectable } from '@angular/core'
import { BehaviorSubject } from 'rxjs';
import { ApiService, Drive } from './api/api.service'
import { ApiService, DiskInfo } from './api/api.service'
@Injectable({
providedIn: 'root'
@@ -8,9 +8,9 @@ import { ApiService, Drive } from './api/api.service'
export class StateService {
polling = false
embassyDrive: Drive;
embassyDrive: DiskInfo;
embassyPassword: string
recoveryDrive: Drive;
recoveryDrive: DiskInfo;
recoveryPassword: string
dataTransferProgress: { bytesTransfered: number; totalBytes: number } | null;
dataProgress = 0;