26 lines
359 B
TypeScript
Executable File
26 lines
359 B
TypeScript
Executable File
export interface IToken {
|
|
access: string
|
|
// browser: string
|
|
token: string
|
|
refreshToken: string
|
|
data_login: Date
|
|
}
|
|
|
|
export interface ILinkReg {
|
|
idlink: string
|
|
}
|
|
|
|
export interface ICallResult {
|
|
code?: string
|
|
msg?: string
|
|
}
|
|
|
|
export interface IIdToken {
|
|
x_auth_token: string
|
|
}
|
|
|
|
export interface IResult {
|
|
status: number
|
|
statusText: string
|
|
}
|