umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
12 lines (11 loc) • 350 B
TypeScript
import { DataTypePrevalue } from './dataTypePrevalue';
export declare abstract class DataType {
action: string;
id: number;
name: string;
parentId: number;
selectedEditor: string;
protected preValues: DataTypePrevalue[];
getPrevalues(): DataTypePrevalue[];
abstract addPrevalues(value: any[] | any): any;
}