SongGuess
    Preparing search index...

    Interface ImageTransformationResult

    interface ImageTransformationResult {
        contentType(): string;
        image(
            options?: ImageTransformationOutputOptions,
        ): ReadableStream<Uint8Array<ArrayBufferLike>>;
        response(): Response;
    }
    Index

    Methods

    • The content type of the returned image

      Returns string

    • The image as a response, ready to store in cache or return to users

      Returns Response