7 lines
213 B
TypeScript
Raw Normal View History

2024-08-02 18:19:39 +08:00
import type { VNodeChild } from 'vue';
2024-01-29 09:26:07 +08:00
import type { SelectOption } from '../../../select/src/interface';
export type RenderTag = (props: {
option: SelectOption;
handleClose: () => void;
}) => VNodeChild;