vue-devui
Version:
DevUI components based on Vite and Vue3
9 lines (8 loc) • 343 B
TypeScript
/**
* 清空按钮显示、隐藏
*/
import { SetupContext, Ref } from 'vue';
import { KeydownReturnTypes, SearchProps } from '../search-types';
type EmitProps = 'update:modelValue' | 'search';
export declare const keydownHandles: (ctx: SetupContext<EmitProps[]>, keywords: Ref<string>, props: SearchProps) => KeydownReturnTypes;
export {};