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