Fix type errors (#1867)

zio/stable
Eric Bailey 2023-11-10 12:20:33 -06:00 committed by GitHub
parent 6513055d02
commit e0e5bc8fd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@ import {RootStoreModel} from './root-store'
export type ServiceDescription = DescribeServer.OutputSchema
export class SessionModel {
data: any = {}
constructor(public rootStore: RootStoreModel) {
makeAutoObservable(this, {
rootStore: false,
@ -23,6 +25,8 @@ export class SessionModel {
return false
}
clear() {}
/**
* Helper to fetch the accounts config settings from an account.
*/