f249cfc
1
2
3
4
5
6
7
8
9
import { writable } from "svelte/store"; export interface TitleUpdate { convId: string; title: string; } export default writable<TitleUpdate | null>(null);