@applitools/eyes-browser
Version:
42 lines (41 loc) • 1.32 kB
TypeScript
export type ApiUrls = {
readonly baselineImage: string;
readonly currentImage: string;
readonly checkpointImage: string;
readonly checkpointImageThumbnail: string;
readonly diffImage: string;
readonly sideBySideImage: string;
};
export declare class ApiUrlsData implements Required<ApiUrls> {
private _urls;
/** @internal */
constructor(urls: ApiUrls);
get baselineImage(): string;
getBaselineImage(): string;
/** @deprecated */
setBaselineImage(setBaselineImage: string): void;
get currentImage(): string;
getCurrentImage(): string;
/** @deprecated */
setCurrentImage(currentImage: string): void;
get checkpointImage(): string;
getCheckpointImage(): string;
/** @deprecated */
setCheckpointImage(checkpointImage: string): void;
get checkpointImageThumbnail(): string;
getCheckpointImageThumbnail(): string;
/** @deprecated */
setCheckpointImageThumbnail(checkpointImageThumbnail: string): void;
get diffImage(): string;
getDiffImage(): string;
/** @deprecated */
setDiffImage(diffImage: string): void;
get sideBySideImage(): string;
getSideBySideImage(): string;
/** @internal */
toObject(): ApiUrls;
/** @internal */
toJSON(): ApiUrls;
/** @internal */
toString(): string;
}