@heinlein-video/rrule
Version:
rrule fork. Includes the src/ folder for typescript sourceMaps
25 lines (22 loc) • 866 B
text/typescript
/* !
* rrule.js - Library for working with recurrence rules for calendar dates.
* https://github.com/jakubroztocil/rrule
*
* Copyright 2010, Jakub Roztocil and Lars Schoning
* Licenced under the BSD licence.
* https://github.com/jakubroztocil/rrule/blob/master/LICENCE
*
* Based on:
* python-dateutil - Extensions to the standard Python datetime module.
* Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>
* Copyright (c) 2012 - Tomi Pieviläinen <tomi.pievilainen@iki.fi>
* https://github.com/jakubroztocil/rrule/blob/master/LICENCE
*
*/
export { RRule } from './rrule'
export { RRuleSet } from './rruleset'
export { rrulestr } from './rrulestr'
export { Frequency, ByWeekday, Options } from './types'
export { Weekday, WeekdayStr } from './weekday'
export { RRuleStrOptions } from './rrulestr'
export { datetime } from './dateutil'