UNPKG

@vansite/ts-sharetribe-flex-sdk

Version:

This is a TypeScript SDK for Sharetribe Flex API. It reduces the complexity of the API and provides a more user-friendly interface.

9 lines (8 loc) 405 B
import { ApiConfigs } from "../types"; /** * Creates API configurations for the SDK. * * @param isIntegrationSdk - Determines whether the configuration is for the Integration SDK (default: false). * @returns An object containing API configurations for the standard SDK or Integration SDK. */ export declare const createApisConfigs: <I extends boolean = false>(isIntegrationSdk?: I) => ApiConfigs<I>;