| 3 | import { IcalExpander } from './ical-expander/IcalExpander' |
| 4 | |
| 5 | export interface ICalFeedMeta { |
| 6 | url: string |
| 7 | format: 'ics', // for EventSourceApi |
| 8 | internalState?: InternalState // HACK. TODO: use classes in future |
| 9 | } |
| 10 | |
| 11 | interface InternalState { |
| 12 | iCalExpanderPromise: Promise<IcalExpander> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…