Files
myprojplanet_vite/src/model/other.ts

26 lines
359 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
export interface IToken {
access: string
// browser: string
token: string
refreshToken: string
2021-08-31 18:09:59 +02:00
data_login: Date
}
export interface ILinkReg {
idlink: string
}
2021-09-16 21:08:02 +02:00
export interface ICallResult {
code?: string
msg?: string
}
2021-08-31 18:09:59 +02:00
export interface IIdToken {
x_auth_token: string
}
export interface IResult {
status: number
statusText: string
}