export interface LoginData { email: string; password: string; action?: string; } export interface PageData { date?: number; act?: number; usr?: string; tit?: string; kw?: string; desc?: string; path?: string; img?: string; id?: string; image?: string; q?: Array; profile?: string; } export interface HttpOptionsData { showIndicator?: boolean; showError?: boolean; pageSize?: number; key?: string; rawString?: boolean; isBlob?: boolean; useCache?: boolean; avoidToken?: boolean; contentType?: string; } export interface BaseComponentData { loadUser?: boolean; loadPage?: boolean; } export interface CardComponentMenuData { icono: string; texto: string; action: Function; onlyOwner?: boolean; } export interface CardComponentData { imageUrl?: string; title?: string; icon?: string; href?: string; action?: Function; menu?: Array; bigColumn?: number; profile?: string; act?: number; usr?: string; owner?: boolean; id?: string; }