UNPKG

@vrx-arco/pro-components

Version:

<p align="center"> <img src="https://vrx-arco.github.io/arco-design-pro/favicon.svg" width="200" height="250"> </p>

10 lines (9 loc) 361 B
import { ComputedRef, Ref } from 'vue'; interface ProvideSearchBar { gridProps: ComputedRef<Record<string, any>>; model: Ref<Record<string, any>>; autoUpdate: Ref<boolean>; } export declare const provideSearchBar: ({ gridProps, model, autoUpdate }: ProvideSearchBar) => void; export declare const injectSearchBar: () => ProvideSearchBar; export {};