homeweather-fe/src/lib/weather.store.ts

5 lines
153 B
TypeScript

import { writable } from 'svelte/store';
import type { Weather } from './weather.interface';
export const weatherInfo = writable<Partial<Weather>>({});