Files
freeplanet/src/model/other.ts

20 lines
251 B
TypeScript
Raw Normal View History

export interface IToken {
access: string
token: string
data_login: Date
}
export interface ILinkReg {
idlink: string
}
export interface IIdToken {
x_auth_token: string
}
export interface IResult {
status: number
statusText: string
}