UNPKG

chatwork-api-wrap

Version:
8 lines (7 loc) 259 B
import { Contact } from "./constants"; export type ContactsGetResponse = Array<Contact>; /** * Get contact list. * https://developer.chatwork.com/reference/get-contacts */ export declare function get(apiToken: string): Promise<ContactsGetResponse | null>;