UNPKG

quip-api-typescript

Version:

This is the unofficial and incomplete, but TypeScript-compatible and promise-based library to access the [Quip Automation API](https://quip.com/api/).

11 lines (10 loc) 362 B
import { Get, ResponseMetadata } from "../types"; export interface GetThreadHtmlV2RequestProps { id: string; } export interface GetThreadHtmlV2Response { html: string; response_metadata: ResponseMetadata; } /** @internal */ export declare const getThreadHtmlV2: (get: Get) => (props: GetThreadHtmlV2RequestProps) => Promise<GetThreadHtmlV2Response>;