adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
18 lines (17 loc) • 567 B
TypeScript
import * as React from "react";
import "./style";
export interface IShortcutsProps {
[key: string]: any;
onShortcutClick: (value: Date | [Date | null | undefined, Date | null | undefined]) => void;
selectedDay?: Date | "" | null;
selectedDays?: [Date | null | undefined, Date | null | undefined] | null;
shortcuts?: {
label: React.ReactNode;
value: Date | [Date | null | undefined, Date | null | undefined];
}[];
}
/**
* 日期选择 Shortcuts
*/
declare const Shortcuts: React.FC<IShortcutsProps>;
export default Shortcuts;