ApiClient
interface ApiClient<API = any, CONFIG = any, CLIENT = any> {
api: API;
client: CLIENT;
settings: CONFIG & {
integrationName: string;
};
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
api | Required | API | |
client | Required | CLIENT | |
settings | Required | CONFIG & { integrationName: string; } |