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/).
12 lines (11 loc) • 309 B
TypeScript
/** @internal */
export declare type Get = <T>(path: string) => Promise<T>;
/** @internal */
export declare type Post = <T>(path: string, data: any) => Promise<T>;
export interface ResponseMetadata {
next_cursor: string;
}
export interface MembersEntity {
user_id: string;
access_level: string;
}