interface ILoginResponse { access: { token: string; expires: number; }; refresh: { token: string; expires: number; }; org?: { id: number; short: string; admin: number | null; address: number | null; fullname: string; alias: string | null; type: string; reg: string; logo: string | null; expiration: Date | null; billingDay: number; enabled: boolean; created: Date; updated: Date; } | null; user?: { id: number; login: string; email: string; enabled: boolean; created: Date; updated: Date; } | null; } export default ILoginResponse;