vue-weather-ui
Version:
A beautiful Vue 3 weather UI components library with mini mode support and QWeather integration
22 lines (21 loc) • 911 B
TypeScript
import { HistoricalTimelineProps, HistoricalWeather } from '../types/weather';
interface Props extends HistoricalTimelineProps {
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
daySelect: (day: HistoricalWeather) => any;
dayChange: (day: HistoricalWeather) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
onDaySelect?: ((day: HistoricalWeather) => any) | undefined;
onDayChange?: ((day: HistoricalWeather) => any) | undefined;
}>, {
mini: boolean;
theme: "light" | "dark";
locale: "zh" | "en";
showTitle: boolean;
autoPlay: boolean;
autoPlayInterval: number;
showControls: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
timelineTrack: HTMLDivElement;
}, HTMLDivElement>;
export default _default;