CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/sync/table/index.ts
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
// Function to make one:
7
export { synctable } from "./global-cache";
8
9
// Type of it.
10
export { SyncTable, set_debug } from "./synctable";
11
12
export type {
13
Query,
14
QueryOptions,
15
VersionedChange,
16
State as SyncTableState,
17
} from "./synctable";
18
19
export { synctable_no_changefeed } from "./synctable-no-changefeed";
20
21
export { synctable_no_database } from "./synctable-no-database";
22
23