Renderer will be only react/redux code. Common code can be used in both main and renderer.
12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
import { Agent } from './Agent'
|
|
|
|
export interface AuthPayload {
|
|
|
|
agent: Agent
|
|
username: string
|
|
password: string
|
|
clientToken?: string
|
|
requestUser?: boolean
|
|
|
|
}
|