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) • 422 B
TypeScript
import { Get, MembersEntity, ResponseMetadata } from "../types";
export interface GetThreadMembersV2RequestProps {
threadIdOrSecretPath: string;
}
export interface GetThreadMembersV2Response {
members: MembersEntity[];
response_metadata: ResponseMetadata;
}
/** @internal */
export declare const getThreadMembersV2: (get: Get) => (props: GetThreadMembersV2RequestProps) => Promise<GetThreadMembersV2Response>;