umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
30 lines (29 loc) • 781 B
TypeScript
import { ContentVariantPropertyBuilder } from './contentVariantPropertyBuilder';
export declare class ContentVariantBuilder {
parentBuilder: any;
id: any;
name: any;
culture: any;
publish: any;
save: any;
releaseDate: any;
expireDate: any;
contentVariantPropertyBuilders: any;
constructor(parentBuilder: any);
addProperty(): ContentVariantPropertyBuilder;
withCulture(culture: any): this;
withPublish(publish: any): this;
withSave(save: any): this;
withName(name: any): this;
done(): any;
build(): {
name: any;
id: any;
properties: any;
culture: any;
publish: any;
save: any;
releaseDate: any;
expireDate: any;
};
}