Fix type errors (#1867)

This commit is contained in:
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

View file

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