UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

11 lines (10 loc) 312 B
import { DataType } from '../../models/dataTypes/dataType'; export declare class DataTypeBuilder { dataType: DataType; constructor(dataType: DataType); withSaveAction(): this; withSaveNewAction(): this; withId(id: any): this; withName(name: any): this; build(): DataType; }