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/).

9 lines (8 loc) 372 B
import { Get } from "../types"; import { GetFolderRequestProps, GetFolderResponse } from "./getFolder"; export declare class FoldersAPI { /** [Quip API Reference](https://quip.com/dev/automation/documentation/current#operation/getFolder) */ getFolder: (props: GetFolderRequestProps) => Promise<GetFolderResponse>; /** @internal */ constructor(get: Get); }