@ownclouders/design-system
Version:
ownCloud Design System is based on VueDesign Systems and is used to design ownCloud UI components
20 lines (19 loc) • 683 B
TypeScript
import { DateTime } from 'luxon';
interface Props {
label: string;
isClearable?: boolean;
currentDate?: DateTime;
minDate?: DateTime;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
dateChanged: (value: {
date: DateTime | null;
error: boolean;
}) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
onDateChanged?: (value: {
date: DateTime | null;
error: boolean;
}) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;