mirror of
https://github.com/The-Low-Code-Foundation/OpenNoodl.git
synced 2026-01-11 23:02:56 +01:00
Added custom json edit to config tab
This commit is contained in:
13
packages/noodl-viewer-react/typings/global.d.ts
vendored
13
packages/noodl-viewer-react/typings/global.d.ts
vendored
@@ -28,6 +28,19 @@ type GlobalNoodl = {
|
||||
CloudFunctions: TSFixme;
|
||||
Navigation: TSFixme;
|
||||
Files: TSFixme;
|
||||
/**
|
||||
* App Configuration - Immutable configuration values defined in App Setup.
|
||||
* Access app-wide settings like API keys, feature flags, and metadata.
|
||||
*
|
||||
* @example
|
||||
* ```typescript
|
||||
* // Access config values
|
||||
* const apiKey = Noodl.Config.apiKey;
|
||||
* const appName = Noodl.Config.appName;
|
||||
* const isFeatureEnabled = Noodl.Config.featureFlag;
|
||||
* ```
|
||||
*/
|
||||
Config: Readonly<Record<string, unknown>>;
|
||||
};
|
||||
|
||||
interface Window {
|
||||
|
||||
Reference in New Issue
Block a user