Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/conat/project/api/sync.ts
1453 views
1
export const sync = {
2
close: true,
3
// projectInfo: true,
4
5
// x11: true,
6
// synctableChannel: true,
7
// symmetricChannel: true,
8
};
9
10
export interface Sync {
11
close: (path: string) => Promise<void>;
12
}
13
14