@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
41 lines (40 loc) • 954 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
export declare const touchTimeProps: {
title: {
type: StringConstructor;
default: string;
};
modelValue: {
type: StringConstructor;
default: string;
};
format: {
type: StringConstructor;
default: string;
};
maxTime: {
type: StringConstructor;
default: undefined;
};
minTime: {
type: StringConstructor;
default: undefined;
};
optionFormatter: {
type: PropType<(type: string, value: string) => string>;
default: undefined;
};
visiableOptionCount: {
type: NumberConstructor;
default: number;
};
showToolbar: {
type: BooleanConstructor;
default: boolean;
};
use12Hours: {
type: BooleanConstructor;
default: boolean;
};
};
export type TouchTimeProps = ExtractPropTypes<typeof touchTimeProps>;