gcalendar-cli
Version:
Google Calendar cli tool for Node.js
7 lines (6 loc) • 451 B
TypeScript
import { GCalEvent } from "../models/event";
import { Dictionary } from "lodash";
export declare const filterWithRange: (from: Date, to: Date) => (gCalEvents: GCalEvent[]) => GCalEvent[];
export declare const sortWithinDay: (gCalEvent: GCalEvent[]) => GCalEvent[];
export declare const groupAcrossDays: (gCalEvents: GCalEvent[]) => Dictionary<GCalEvent[]>;
export declare const groupAndSort: (gCalEvent: GCalEvent[]) => Dictionary<GCalEvent[]>;