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) 356 B
import { Get } from "../types"; import { GetUserRequestProps, GetUserResponse } from "./getUser"; export declare class UsersAPI { /** [Quip API Reference](https://quip.com/dev/automation/documentation/current#operation/getUser) */ getUser: (props: GetUserRequestProps) => Promise<GetUserResponse>; /** @internal */ constructor(get: Get); }