mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
Replace hardcoded "tfl-alert" string with a TflFeedItemType const object, matching the pattern used by google-calendar and weatherkit packages. Co-authored-by: Ona <no-reply@ona.com>
14 lines
326 B
TypeScript
14 lines
326 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,
|
|
} from "./types.ts"
|