vue-devui
Version:
DevUI components based on Vite and Vue3
9 lines (8 loc) • 327 B
TypeScript
/**
* 输入框内容定义、删改操作
*/
import { SetupContext } from 'vue';
import { SearchProps, KeywordsReturnTypes } from '../search-types';
type EmitProps = 'update:modelValue' | 'search';
export declare const keywordsHandles: (ctx: SetupContext<EmitProps[]>, props: SearchProps) => KeywordsReturnTypes;
export {};