libs/core/dynamic-form/line-break/src/line-break.model.ts
Properties |
| acl | |
| Type |
never
|
| columnSpan | |
| Type |
never
|
| id | |
| Type |
never
|
| infoIcon | |
| Type |
never
|
| label | |
| Type |
never
|
| spacing | |
| Type |
never
|
| testId | |
| Type |
never
|
| type | |
|
Description
|
Specifies the type of the field as |
import { DfBaseConfig } from '@allianz/taly-core/dynamic-form';
/**
* The value to use for the `type` attribute of line break
* formfield configs.
*/
export const DfLineBreakTypeName = 'LINE_BREAK';
export interface DfLineBreakConfig extends DfBaseConfig {
/**
* Specifies the type of the field as `LINE_BREAK`.
*/
type: typeof DfLineBreakTypeName;
label: never;
id: never;
infoIcon: never;
spacing: never;
columnSpan: never;
testId: never;
acl: never;
}