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/project/globals.d.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
import $ from "jquery"; // picks jQuery from @types
7
declare const $ = $;
8
// declare const $: any; // old more general approach
9
declare const window: any;
10
declare const localStorage: any;
11
// export { $, window, localStorage }; // didn't work, but maybe it should?
12
13