effect-libreoffice-workspace
    Preparing search index...

    Variable ConversionApiConst

    ConversionApi: HttpApiGroup<
        "conversion",
        | HttpApiEndpoint<
            "convert",
            "POST",
            never,
            never,
            {
                file: PersistedFile;
                format: "pdf"
                | "docx"
                | "html"
                | "jpg"
                | "txt"
                | "png";
            } & Brand<typeof MultipartTypeId>,
            never,
            Uint8Array<ArrayBufferLike>,
            LibreOfficeError,
            never,
            never,
        >
        | HttpApiEndpoint<
            "convertUrl",
            "POST",
            never,
            never,
            {
                format: "pdf"
                | "docx"
                | "html"
                | "jpg"
                | "txt"
                | "png";
                inputUrl: string;
                outputUrl?: string;
            },
            never,
            Uint8Array<ArrayBufferLike>
            | { status: "ok" },
            LibreOfficeError,
            never,
            never,
        >,
        never,
        never,
        false,
    > = ...