ical-generator 9.0.0-develop.6 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -131,5 +131,5 @@
131
131
  "test": "mocha"
132
132
  },
133
133
  "type": "module",
134
- "version": "9.0.0-develop.6"
134
+ "version": "9.0.0"
135
135
  }
package/src/index.ts CHANGED
@@ -114,5 +114,6 @@ export {
114
114
  type ICalRepeatingOptions,
115
115
  type ICalRRuleStub,
116
116
  type ICalTimezone,
117
+ type ICalTZDateStub,
117
118
  ICalWeekday,
118
119
  } from './types.ts';
package/src/types.ts CHANGED
@@ -130,6 +130,5 @@ export interface ICalTimezone {
130
130
 
131
131
  export interface ICalTZDateStub extends Date {
132
132
  timeZone?: string;
133
- tzComponents(): string[];
134
133
  withTimeZone(timezone?: null | string): ICalTZDateStub;
135
134
  }