UNPKG

fleeta-lib

Version:

A comprehensive library for fleet management applications - API, Auth, Device management

23 lines 613 B
/** * API Endpoint Configuration Interface */ interface ApiEndpointConfig { apiGateway: string; iotApiGateway: string; } /** * API Endpoint Store State Interface */ interface ApiEndpointState { config: ApiEndpointConfig | null; isInitialized: boolean; setConfig: (config: ApiEndpointConfig) => void; clearConfig: () => void; } /** * API Endpoint Store * Manages all API endpoints and tokens centrally */ export declare const useApiEndpointStore: import("zustand").UseBoundStore<import("zustand").StoreApi<ApiEndpointState>>; export {}; //# sourceMappingURL=apiEndpointStore.d.ts.map