Files
myprojplanet_vite/src/model/other.ts
Surya Paolo 62c0f497e5 - aggiornamento refreshtoken (parte 1)
- PCB: fix listino
2024-04-09 21:57:04 +02:00

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
}