Launcher/src/main/mojang/model/auth/Session.ts
Daniel Scalzi 75a7e0f713
File structure refactor, move old files to old directory.
Removed legacy config path support in ConfigManager.
Moved model files to corresponding subdirectories, rather than being in
an uber model directory.
2020-04-13 22:51:32 -04:00

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
}>
}
}