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/util/consts/bookmarks.ts
Views: 687
1
// maximum number of stars per bookmark
2
export const MAX_STARS = 256;
3
// maximum length of strings in the stars string array
4
export const MAX_LENGTH_STAR = 2048;
5
// the type of bookmark for starring files
6
export const STARRED_FILES = "starred-files";
7
8