@c8y/ngx-components
Version:
Angular modules for Cumulocity IoT applications
11 lines • 454 B
TypeScript
import { FormControl, FormGroup } from '@angular/forms';
import { SelectedDatapoint, TimelineType } from '../alarm-event-selector.model';
export interface AlarmEventAttributeForm {
filters: FormGroup<{
type: FormControl<string>;
}>;
timelineType: FormControl<TimelineType>;
selectedDatapoint: FormControl<null | SelectedDatapoint>;
label?: FormControl<string>;
}
//# sourceMappingURL=alarm-event-attributes-form.model.d.ts.map