UNPKG

@totvs-agro/mobile-components

Version:

Componentes Mobile Totvs (Front-End) para utilização dos estilos do T-Faces e Ionic v3

13 lines (12 loc) 386 B
import { CardItemModel } from "../../model/card/card-item-model"; import { CheckBoxItemModel } from "../../model/checkbox/checkbox-item-model"; export interface AccordionItemModel { title: string; text?: string; cards?: CardItemModel[]; checks?: CheckBoxItemModel[]; expanded?: boolean; firstExpanded?: boolean; data?: any; order?: number; }