umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
13 lines (12 loc) • 320 B
TypeScript
/**
* Creates a property object used in document types etc
*
* @param {string} name Name of the property
* @param {string} alias Optional alias of the property
*/
export declare class BaseProperty {
id: string;
alias: string;
name: string;
constructor(name: string, alias?: string);
}