drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
10 lines (9 loc) • 428 B
TypeScript
import { AnalysisBuilderProps, AnalysisBuilderRef } from './types';
/**
* AnalysisBuilder - Main exported component
*
* Wraps the inner component with the store provider to ensure
* each AnalysisBuilder instance has its own isolated state.
*/
declare const AnalysisBuilder: import('react').ForwardRefExoticComponent<AnalysisBuilderProps & import('react').RefAttributes<AnalysisBuilderRef>>;
export default AnalysisBuilder;