vuestic-ui
Version:
Vue 3 UI Framework
12 lines (11 loc) • 506 B
TypeScript
import { type Ref, type ExtractPropTypes } from 'vue';
import type { SelectOption } from '../types';
export declare const useStringValueProps: {
separator: {
type: StringConstructor;
default: string;
};
};
type UseStringValueProps = ExtractPropTypes<typeof useStringValueProps>;
export declare const useStringValue: (props: UseStringValueProps, visibleSelectedOptions: Ref<SelectOption[]>, getText: (option: SelectOption) => string) => import("vue").ComputedRef<string>;
export {};