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