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/jupyter/redux/app.ts
Views: 687
1
import { AppRedux as AppReduxBase } from "@cocalc/util/redux/AppRedux";
2
3
export class AppRedux extends AppReduxBase {
4
getProjectTable(_project_id: string, _name: string) {
5
throw Error("not implemented");
6
}
7
getTable(_name: string) {
8
throw Error("not implemented");
9
}
10
removeTable(_name: string): void {
11
throw Error("not implemented");
12
}
13
}
14
15
export const redux = new AppRedux();
16
17