Fix type errors (#1867)
This commit is contained in:
parent
6513055d02
commit
e0e5bc8fd8
1 changed files with 4 additions and 0 deletions
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue