2026-01-17 00:34:46 +00:00
|
|
|
export {
|
|
|
|
|
WeatherKitDataSource,
|
|
|
|
|
Units,
|
|
|
|
|
type Units as UnitsType,
|
|
|
|
|
type WeatherKitDataSourceOptions,
|
|
|
|
|
type WeatherKitQueryConfig,
|
|
|
|
|
} from "./data-source"
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
WeatherFeedItemType,
|
|
|
|
|
type WeatherFeedItemType as WeatherFeedItemTypeType,
|
|
|
|
|
type CurrentWeatherData,
|
|
|
|
|
type CurrentWeatherFeedItem,
|
|
|
|
|
type DailyWeatherData,
|
|
|
|
|
type DailyWeatherFeedItem,
|
|
|
|
|
type HourlyWeatherData,
|
|
|
|
|
type HourlyWeatherFeedItem,
|
|
|
|
|
type WeatherAlertData,
|
|
|
|
|
type WeatherAlertFeedItem,
|
|
|
|
|
type WeatherFeedItem,
|
|
|
|
|
} from "./feed-items"
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
Severity,
|
|
|
|
|
Urgency,
|
|
|
|
|
Certainty,
|
|
|
|
|
PrecipitationType,
|
|
|
|
|
ConditionCode,
|
2026-01-17 01:14:18 +00:00
|
|
|
DefaultWeatherKitClient,
|
2026-01-17 00:34:46 +00:00
|
|
|
type Severity as SeverityType,
|
|
|
|
|
type Urgency as UrgencyType,
|
|
|
|
|
type Certainty as CertaintyType,
|
|
|
|
|
type PrecipitationType as PrecipitationTypeType,
|
|
|
|
|
type ConditionCode as ConditionCodeType,
|
|
|
|
|
type WeatherKitCredentials,
|
2026-01-17 01:14:18 +00:00
|
|
|
type WeatherKitClient,
|
|
|
|
|
type WeatherKitQueryOptions,
|
2026-01-17 00:34:46 +00:00
|
|
|
} from "./weatherkit"
|