UNPKG

tibas-form-json-generator

Version:

Fully configured form generator via JSON data with a custom template for each attribute + onChange events.

16 lines (15 loc) 382 B
import { AttributeModel } from './attribute.model'; import { ItemModel } from './item.model'; export declare class ChecklistModel { id: number; checklistId: number; code: string; label: string; sourceId: number; description: string; version: number; modelStatus: string; attributes: AttributeModel[]; items: ItemModel[]; constructor(); }