1// maximum number of stars per bookmark 2export const MAX_STARS = 256; 3// maximum length of strings in the stars string array 4export const MAX_LENGTH_STAR = 2048; 5// the type of bookmark for starring files 6export const STARRED_FILES = "starred-files"; 7// the conat key for storing bookmarks 8export const CONAT_BOOKMARKS_KEY = "bookmark-starred-files"; 9 10