UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

15 lines 469 B
import * as React from 'react'; export interface ISelectWeekStrings { selectWeekPlaceholder: string; } export declare const defaultSelectWeekStrings: ISelectWeekStrings; export interface ISelectWeekProps { onSelected: (week: { startDate: Date; endDate: Date; }) => void; value?: Date; strings?: ISelectWeekStrings; } export declare const SelectWeek: React.FunctionComponent<ISelectWeekProps>; //# sourceMappingURL=SelectWeek.d.ts.map