umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
12 lines (10 loc) • 314 B
text/typescript
import { BaseProperty } from './baseProperty';
export class TextBoxProperty extends BaseProperty {
public value: string;
public maxChars: number;
constructor(name: string, alias: string, maxChars: number, value?: string) {
super(name, alias);
this.value = value;
this.maxChars = maxChars;
}
}