@selfcommunity/react-core
Version:
React Core Components useful for integrating UI Community components (react-ui).
14 lines (13 loc) • 473 B
TypeScript
export declare const INTEGRATIONS_OPTION = "integrations";
export declare const INTEGRATIONS_OPENAI_OPTION = "openai";
export declare const INTEGRATIONS_OPENAI_SECRETKEY_OPTION = "secretKey";
export declare const INTEGRATIONS_GEOCODING_OPTION = "geocoding";
export declare const INTEGRATIONS_GEOCODING_APIKEY_OPTION = "apiKey";
export declare const DEFAULT_INTEGRATIONS_OPTION: {
openai: {
secretKey: any;
};
geocoding: {
apiKey: any;
};
};