This commit is contained in:
Eugene Pankov
2017-07-26 19:29:47 +02:00
parent 5045c4c82a
commit 98a5a95bec
9 changed files with 47 additions and 23 deletions

View File

@@ -1,3 +1,10 @@
export abstract class TabRecoveryProvider {
abstract async recover (recoveryToken: any): Promise<void>
import { TabComponentType } from '../services/app.service'
export interface RecoveredTab {
type: TabComponentType,
options?: any,
}
export abstract class TabRecoveryProvider {
abstract async recover (recoveryToken: any): Promise<RecoveredTab|null>
}