mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 06:19:44 +00:00
drive return type update
This commit is contained in:
committed by
Aiden McClelland
parent
6b3570e150
commit
c21ebd2c5e
@@ -1,6 +1,6 @@
|
||||
import { Injectable } from '@angular/core'
|
||||
import { BehaviorSubject } from 'rxjs';
|
||||
import { ApiService, EmbassyDrive, RecoveryDrive } from './api/api.service'
|
||||
import { ApiService, Drive } from './api/api.service'
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
@@ -8,9 +8,9 @@ import { ApiService, EmbassyDrive, RecoveryDrive } from './api/api.service'
|
||||
export class StateService {
|
||||
polling = false
|
||||
|
||||
embassyDrive: EmbassyDrive;
|
||||
embassyDrive: Drive;
|
||||
embassyPassword: string
|
||||
recoveryDrive: RecoveryDrive;
|
||||
recoveryDrive: Drive;
|
||||
recoveryPassword: string
|
||||
dataTransferProgress: { bytesTransfered: number; totalBytes: number } | null;
|
||||
dataProgress = 0;
|
||||
|
||||
Reference in New Issue
Block a user