UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

14 lines 350 B
import { Artifact } from '../Artifact'; /** * @public * @extends {Artifact} */ export declare class Photo extends Artifact { static fromBase64(value: string): Photo; static fromBuffer(value: Buffer | ArrayBuffer): Photo; /** * @param fn */ map<O>(fn: (decodedValue: Buffer) => O): O; } //# sourceMappingURL=Photo.d.ts.map