Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export enum ICalEventRepeatingFreq { DAILY = 'DAILY', HOURLY = 'HOURLY', MINUTELY = 'MINUTELY', MONTHLY = 'MONTHLY', SECONDLY = 'SECONDLY', WEEKLY = 'WEEKLY', YEARLY = 'YEARLY', } export enum ICalWeekday { FR = 'FR', MO = 'MO', SA = 'SA', SU = 'SU', TH = 'TH', TU = 'TU', WE = 'WE', } /** * ical-generator supports [native Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date), * [moment.js](https://momentjs.com/) (and [moment-timezone](https://momentjs.com/timezone/), [Day.js](https://day.js.org/en/) and * [Luxon](https://moment.github.io/luxon/)'s [DateTime](https://moment.github.io/luxon/docs/class/src/datetime.js~DateTime.html) * objects. You can also pass a string which is then passed to javascript's Date internally. */ export type ICalDateTimeValue = | Date | ICalDayJsStub | ICalLuxonDateTimeStub | ICalMomentStub | ICalMomentTimezoneStub | string; export interface ICalDayJsStub { format(format?: string): string; isValid(): boolean; toDate(): Date; toJSON(): string; tz(zone?: string): ICalDayJsStub; utc(): ICalDayJsStub; } export interface ICalDescription { html?: string; plain: string; } export interface ICalGeo { lat: number; lon: number; } export type ICalLocation = ICalLocationWithoutTitle | ICalLocationWithTitle; export interface ICalLocationWithoutTitle { geo: ICalGeo; } export interface ICalLocationWithTitle { address?: string; geo?: ICalGeo; radius?: number; title: string; } export interface ICalLuxonDateTimeStub { get isValid(): boolean; setZone(zone?: string): ICalLuxonDateTimeStub; toFormat(fmt: string): string; toJSDate(): Date; toJSON(): null | string; zone: { type: string }; } export interface ICalMomentDurationStub { asSeconds(): number; } export interface ICalMomentStub { clone(): ICalMomentStub; format(format?: string): string; isValid(): boolean; toDate(): Date; toJSON(): string; utc(): ICalMomentStub; } export interface ICalMomentTimezoneStub extends ICalMomentStub { clone(): ICalMomentTimezoneStub; tz(): string | undefined; tz(timezone: string): ICalMomentTimezoneStub; utc(): ICalMomentTimezoneStub; } export interface ICalOrganizer { email?: string; mailto?: string; name: string; sentBy?: string; } export interface ICalRepeatingOptions { byDay?: ICalWeekday | ICalWeekday[]; byMonth?: number | number[]; byMonthDay?: number | number[]; bySetPos?: number | number[]; count?: number; exclude?: ICalDateTimeValue | ICalDateTimeValue[]; freq: ICalEventRepeatingFreq; interval?: number; startOfWeek?: ICalWeekday; until?: ICalDateTimeValue; } export interface ICalRRuleStub { between( after: Date, before: Date, inc?: boolean, iterator?: (d: Date, len: number) => boolean, ): Date[]; toString(): string; } export interface ICalTimezone { generator?: (timezone: string) => null | string; name: null | string; } export interface ICalTZDateStub extends Date { timeZone?: string; tzComponents(): string[]; withTimeZone(timezone?: null | string): ICalTZDateStub; } |