umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
13 lines (12 loc) • 502 B
TypeScript
import { BaseProperty } from './baseProperty';
/**
* @param {string} name Property name
* @param {string} alias Property alias
* @param {boolean} multiSelect Bool if Dropdown values can be multi selected
* @param {string[]} values Optional string array of values in the dropdown
*/
export declare class DropDownProperty extends BaseProperty {
values: string[];
multiSelect: boolean;
constructor(name: string, alias: string, multiSelect?: boolean, values?: string[]);
}