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