umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
14 lines (11 loc) • 305 B
text/typescript
import { DataType } from './dataType';
import { DataTypePrevalue } from './dataTypePrevalue';
export class GridDataType extends DataType {
constructor() {
super();
this.selectedEditor = 'Umbraco.Grid';
}
public addPrevalues(values: DataTypePrevalue[]) {
this.preValues = values;
}
}