Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/redux/app.ts
1447 views
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