mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
The *TypeType re-exports are unnecessary since consumers can use import type to get the type. Co-authored-by: Ona <no-reply@ona.com>
29 lines
671 B
TypeScript
29 lines
671 B
TypeScript
export { WeatherKey, type Weather } from "./weather-context"
|
|
export { WeatherSource, Units, type WeatherSourceOptions } from "./weather-source"
|
|
|
|
export {
|
|
WeatherFeedItemType,
|
|
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 WeatherKitClient,
|
|
type WeatherKitCredentials,
|
|
type WeatherKitQueryOptions,
|
|
type WeatherKitResponse,
|
|
} from "./weatherkit"
|