@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
17 lines (16 loc) • 491 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
import { SearchField, SearchFieldValueType } from "./composition/types";
export declare const fieldSearchBoxProps: {
fields: {
type: PropType<SearchField[]>;
default: never[];
};
defaultValue: {
type: PropType<{
field: string;
value: SearchFieldValueType;
}>;
default: null;
};
};
export type FieldSearchBoxProps = ExtractPropTypes<typeof fieldSearchBoxProps>;