4 lines
160 B
JavaScript
4 lines
160 B
JavaScript
export const ItemFlags = Object.freeze({
|
|
/** The boolean value to indicate if an item is considered favourited/starred or not */
|
|
FAVOURITE: `favourited`,
|
|
});
|