UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

15 lines (14 loc) 499 B
/// <reference types="react" /> import * as React from 'react'; import { DayOfWeek } from 'office-ui-fabric-react/lib/DatePicker'; import './DatePicker.Examples.scss'; export interface IDatePickerInputExampleState { firstDayOfWeek?: DayOfWeek; value?: Date | null; } export declare class DatePickerInputExample extends React.Component<{}, IDatePickerInputExampleState> { constructor(props: {}); render(): JSX.Element; private _onSelectDate; private _onClick; }