@umbraco/playwright-testhelpers
Version:
Test helpers for making playwright tests for Umbraco solutions
12 lines (11 loc) • 408 B
TypeScript
import { ApiHelpers } from "./ApiHelpers";
export declare class RedirectManagementApiHelper {
api: ApiHelpers;
constructor(api: ApiHelpers);
get(id: string): Promise<any>;
delete(id: string): Promise<any>;
getAll(): Promise<any>;
getStatus(): Promise<any>;
setStatus(status: string): Promise<import("playwright-core").APIResponse>;
filterByText(text: string): Promise<any>;
}