UNPKG

education-module-ai

Version:
12 lines (11 loc) 343 B
import React, { ReactNode } from 'react'; interface AppConfigProps { apiBaseUrl: string; } export declare const AppConfigProvider: React.FC<{ children: ReactNode; config?: Partial<AppConfigProps>; }>; export declare const useAppConfig: () => AppConfigProps; export declare const getApiUrl: (endpoint: string) => string; export {};