mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
[web] last features esm conversion GitOrigin-RevId: a35ab995bf654f1cdfe0e0062d8806761ecccf2d
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('./types').PrivilegeLevelsType} */
|
|
const PrivilegeLevels = {
|
|
NONE: false,
|
|
READ_ONLY: 'readOnly',
|
|
READ_AND_WRITE: 'readAndWrite',
|
|
REVIEW: 'review',
|
|
OWNER: 'owner',
|
|
}
|
|
|
|
export default PrivilegeLevels
|