education-module-ai
Version:
AI Education Module using Agent Framework
12 lines (11 loc) • 343 B
TypeScript
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 {};