UNPKG

lwx-test-ui

Version:

lwx-test-ui

13 lines (12 loc) 448 B
import { ExtractPropTypes } from 'vue'; export declare const selectIconProps: { readonly modelValue: { readonly type: StringConstructor; readonly default: ""; }; }; export type SelectIconProps = ExtractPropTypes<typeof selectIconProps>; export declare const selectIconEmits: { 'update:modelValue': (value: string | null | undefined) => string | null | undefined; }; export type SelectIconEmits = typeof selectIconEmits;