UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

15 lines (14 loc) 559 B
import { DataTypeBuilder } from './dataTypeBuilder'; import { LabelDataType } from '../../models/dataTypes/labelDataType'; export declare class LabelDataTypeBuilder extends DataTypeBuilder { private labelDataType; constructor(labelDataType?: LabelDataType); withStringValueType(): this; withDecimalValueType(): this; withDateTimeValueType(): this; withTimeValueType(): this; withIntegerValueType(): this; withBigIntegerValueType(): this; withLongStringValueType(): this; withValueType(type: any): this; }