@applitools/eyes-browser
Version:
24 lines (23 loc) • 590 B
TypeScript
export type AppUrls = {
readonly step: string;
readonly stepEditor: string;
};
export declare class AppUrlsData implements Required<AppUrls> {
private _urls;
/** @internal */
constructor(urls: AppUrls);
get step(): string;
getStep(): string;
/** @deprecated */
setStep(step: string): void;
get stepEditor(): string;
getStepEditor(): string;
/** @deprecated */
setStepEditor(stepEditor: string): void;
/** @internal */
toObject(): AppUrls;
/** @internal */
toJSON(): AppUrls;
/** @internal */
toString(): string;
}