8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { Plugin } from "../../types/options";
|
|
export declare type PlusWeeks = {
|
|
weekStartDay: Date;
|
|
weekEndDay: Date;
|
|
};
|
|
declare function weekSelectPlugin(): Plugin<PlusWeeks>;
|
|
export default weekSelectPlugin;
|