12 lines
430 B
TypeScript
12 lines
430 B
TypeScript
import { AxiosInstance } from "axios";
|
|
import { IntegrationsModule } from "./integrations.types.js";
|
|
/**
|
|
* Creates the integrations module for the Base44 SDK.
|
|
*
|
|
* @param axios - Axios instance
|
|
* @param appId - Application ID
|
|
* @returns Integrations module with dynamic access to integration endpoints
|
|
* @internal
|
|
*/
|
|
export declare function createIntegrationsModule(axios: AxiosInstance, appId: string): IntegrationsModule;
|