UNPKG

react-period-of-stay-input

Version:

React.js component for entering a period of stay in a hotel: check-in + check-out date

12 lines (11 loc) 299 B
import * as moment from 'moment'; import { Moment } from 'moment'; export declare const FORMAT = "YYYY-MM-DD"; export default class Day { private stringValue; constructor(value: string | Moment); toString(): string; toMoment(): moment.Moment; next(): Day; previous(): Day; }