umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
25 lines (24 loc) • 671 B
TypeScript
export declare class PermissionsBuilder {
permissions: string[];
parentBuilder: any;
constructor(parentBuilder: any);
withCultureAndHostNames(): this;
withRestrictPublicAccess(): this;
withRollBack(): this;
withBrowseNode(): this;
withCreateContentTemplate(): this;
withDelete(): this;
withCreate(): this;
withNotifications(): this;
withPublish(): this;
withPermissions(): this;
withSendToPublish(): this;
withUnpublish(): this;
withUpdate(): this;
withCopy(): this;
withMove(): this;
withSort(): this;
withAllowAll(): this;
done(): any;
build(): string[];
}