| 4 | import getServerState from './server'; |
| 5 | |
| 6 | export interface CommonProps { |
| 7 | componentId: string; |
| 8 | compoundClause: "filter" | "must"; |
| 9 | URLParams?: boolean; |
| 10 | className?: string; |
| 11 | onQueryChange?: (...args: any[]) => any; |
| 12 | onValueChange?: (...args: any[]) => any; |
| 13 | beforeValueChange?: (...args: any[]) => any; |
| 14 | style?: types.style; |
| 15 | } |
| 16 | |
| 17 | export { default as NumberBox } from './components/basic/NumberBox'; |
| 18 | export { default as ReactiveBase } from './components/basic/ReactiveBase'; |
nothing calls this directly
no outgoing calls
no test coverage detected