Files
simple-chats/src/lib/chats.ts
0nepeop1e 209cd0e208
All checks were successful
release / release (push) Successful in 36s
add top layout
2024-06-14 13:30:40 +08:00

5 lines
155 B
TypeScript

import type { Comment } from '@onecomme.com/onesdk/types/Comment';
import { writable } from 'svelte/store';
export const chats = writable<Comment[]>([]);