mirror of
https://github.com/kennethnym/aris.git
synced 2026-04-12 21:01:19 +01:00
TflSource.fetchItems() now returns one TflStatusFeedItem with an alerts array instead of separate items per line disruption. Signals use the highest severity. Alerts sorted by station distance. Co-authored-by: Ona <no-reply@ona.com>
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
export { TflSource } from "./tfl-source.ts"
|
|
export { TflApi } from "./tfl-api.ts"
|
|
export type { TflLineId } from "./tfl-api.ts"
|
|
export {
|
|
TflFeedItemType,
|
|
type ITflApi,
|
|
type StationLocation,
|
|
type TflAlertData,
|
|
type TflAlertFeedItem,
|
|
type TflAlertSeverity,
|
|
type TflLineStatus,
|
|
type TflSourceOptions,
|
|
type TflStatusData,
|
|
type TflStatusFeedItem,
|
|
} from "./types.ts"
|
|
export { renderTflStatus } from "./renderer.tsx"
|