UNPKG

schedule-kernel

Version:

The back-end core module used for storing/displaying the course schedule

13 lines 358 B
import { configType } from "./types"; /** * 获取默认的课程表配置对象。 */ export declare function getDefaultConfig(): configType; /** * 获取指定日期对应的单双周 */ export declare function getWeekTypeForDate(startDate: Date, date: Date): { weekType: "odd" | "even"; dayIndex: number; }; //# sourceMappingURL=utils.d.ts.map