Fix type errors (#1867)
parent
6513055d02
commit
e0e5bc8fd8
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue