UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

28 lines (27 loc) 760 B
import { ContentVariantBuilder } from './contentVariantBuilder'; export declare class ContentBuilder { id: any; contentTypeAlias: any; parentId: any; action: any; expireDate: any; releaseDate: any; templateAlias: any; contentVariantBuilders: any; constructor(); withContentTypeAlias(contentTypeAlias: any): this; withTemplateAlias(templateAlias: any): this; withAction(action: any): this; withParent(parentId: any): this; addVariant(): ContentVariantBuilder; build(): { id: any; contentTypeAlias: any; parentId: any; action: any; variants: any; expireDate: any; releaseDate: any; templateAlias: any; }; }