import type { Games } from './context'; import type { Writable } from 'svelte/store'; /** * Функция для автоматической синхронизации сторов и их данных на сервере * @param param0 Начальные данные */ declare const createReactive: , S extends Record>({ data, stats }: { data: D; stats: S; }, throtte_ms?: number) => { init: (games: Games) => Promise; cleanup: () => void; data: Writable; stats: Writable; }; export { createReactive };