database-petani-mobile/node_modules/@base44/sdk/dist/modules/app-logs.d.ts
2026-02-23 16:39:35 +07:00

12 lines
405 B
TypeScript

import { AxiosInstance } from "axios";
import { AppLogsModule } from "./app-logs.types";
/**
* Creates the app logs module for the Base44 SDK.
*
* @param axios - Axios instance
* @param appId - Application ID
* @returns App logs module with methods for tracking and analyzing app usage
* @internal
*/
export declare function createAppLogsModule(axios: AxiosInstance, appId: string): AppLogsModule;