UNPKG

@appbaseio/reactivesearch-vue

Version:

A Vue UI components library for building search experiences

13 lines (10 loc) 342 B
export interface StateProviderProps { children?: (...args: any[]) => any; render?: (...args: any[]) => any; onChange?: (...args: any[]) => any; componentIds?: string | Array<string>; includeKeys?: Array<string>; strict?: boolean; } declare function StateProvider(props: StateProviderProps): JSX.Element; export default StateProvider;