@dcodegroup-au/dsg-vue
Version:
Front-end Vue/Tailwind DSG for UntitledUI.
31 lines (30 loc) • 1.1 kB
TypeScript
/**
* ------------------------------------------------
* # Import: Dependencies
* ------------------------------------------------
*/
/**
* ------------------------------------------------
* # Setup: Props
* ------------------------------------------------
*/
export interface DsgInputDropdownOption {
value?: string;
label?: string;
}
export interface DsgInputDropdownProps {
name?: string;
placeholder?: string;
classes?: string;
options?: DsgInputDropdownOption[];
}
type __VLS_Props = DsgInputDropdownProps;
type __VLS_PublicProps = {
modelValue?: string;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSelectElement>;
export default _default;