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) • 313 B
TypeScript
import { Get } from "../types";
import { Thread } from ".";
export interface GetThreadV2RequestProps {
id: string;
}
export interface GetThreadV2Response {
thread: Thread;
}
/** @internal */
export declare const getThreadV2: (get: Get) => (props: GetThreadV2RequestProps) => Promise<GetThreadV2Response>;