mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 13:11:17 +00:00
Implements FeedSource for WeatherKit API. Depends on location source, provides weather context for downstream sources, and produces weather feed items. Co-authored-by: Ona <no-reply@ona.com>
40 lines
943 B
TypeScript
40 lines
943 B
TypeScript
export { WeatherKey, type Weather } from "./weather-context"
|
|
export {
|
|
WeatherSource,
|
|
Units,
|
|
type Units as UnitsType,
|
|
type WeatherSourceOptions,
|
|
} from "./weather-source"
|
|
|
|
export {
|
|
WeatherFeedItemType,
|
|
type WeatherFeedItemType as WeatherFeedItemTypeType,
|
|
type WeatherFeedItem,
|
|
type CurrentWeatherFeedItem,
|
|
type CurrentWeatherData,
|
|
type HourlyWeatherFeedItem,
|
|
type HourlyWeatherData,
|
|
type DailyWeatherFeedItem,
|
|
type DailyWeatherData,
|
|
type WeatherAlertFeedItem,
|
|
type WeatherAlertData,
|
|
} from "./feed-items"
|
|
|
|
export {
|
|
ConditionCode,
|
|
Severity,
|
|
Urgency,
|
|
Certainty,
|
|
PrecipitationType,
|
|
DefaultWeatherKitClient,
|
|
type ConditionCode as ConditionCodeType,
|
|
type Severity as SeverityType,
|
|
type Urgency as UrgencyType,
|
|
type Certainty as CertaintyType,
|
|
type PrecipitationType as PrecipitationTypeType,
|
|
type WeatherKitClient,
|
|
type WeatherKitCredentials,
|
|
type WeatherKitQueryOptions,
|
|
type WeatherKitResponse,
|
|
} from "./weatherkit"
|