This commit is contained in:
Eugene Pankov
2017-04-28 22:40:58 +02:00
parent c7828e55f2
commit 94d8886d5a
15 changed files with 82 additions and 59 deletions

View File

@@ -1,3 +1,4 @@
import { Observable } from 'rxjs'
import { TerminalTabComponent } from './components/terminalTab.component'
export { TerminalTabComponent }
@@ -18,7 +19,7 @@ export interface SessionOptions {
cwd?: string
env?: any
recoveryId?: string
recoveredTruePID?: number
recoveredTruePID$?: Observable<number>
}
export abstract class SessionPersistenceProvider {