office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
11 lines (10 loc) • 352 B
TypeScript
import * as React from 'react';
import { DayOfWeek } from 'office-ui-fabric-react/lib/DatePicker';
export interface IDatePickerInputExampleState {
firstDayOfWeek?: DayOfWeek;
value?: Date;
}
export declare class DatePickerInputExample extends React.Component<any, IDatePickerInputExampleState> {
constructor();
render(): JSX.Element;
}