Launcher/src/common/mojang/model/auth/AuthPayload.ts
Daniel Scalzi 9a67087766
Move code to common.
Renderer will be only react/redux code.
Common code can be used in both main and renderer.
2020-05-24 15:44:16 -04:00

12 lines
178 B
TypeScript

import { Agent } from './Agent'
export interface AuthPayload {
agent: Agent
username: string
password: string
clientToken?: string
requestUser?: boolean
}