Skip to content

Interface: QueryRegistry

Query Registry for type-safe analytics queries. Extend this interface via module augmentation to get full type inference:

shared/appkit-types/analytics.d.ts
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 }>;
};
}
}

[key: string]: object