Interface: QueryRegistry
Query Registry for type-safe analytics queries. Extend this interface via module augmentation to get full type inference:
Example
Section titled “Example”declare module "@databricks/appkit-ui/react" { interface QueryRegistry { apps_list: { name: "apps_list"; parameters: { startDate: string; endDate: string; aggregationLevel: string }; result: Array<{ id: string; name: string }>; }; }}Indexable
Section titled “Indexable”[
key:string]:object