Removed legacy config path support in ConfigManager. Moved model files to corresponding subdirectories, rather than being in an uber model directory.
18 lines
276 B
TypeScript
18 lines
276 B
TypeScript
export interface Session {
|
|
|
|
accessToken: string
|
|
clientToken: string
|
|
selectedProfile: {
|
|
id: string
|
|
name: string
|
|
}
|
|
user?: {
|
|
id: string
|
|
properties: Array<{
|
|
name: string
|
|
value: string
|
|
}>
|
|
}
|
|
|
|
}
|