Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | //@ts-check export const AccessLevel = { none: /** @type {GitConfig.$AccessLevel} */ (0), guest: /** @type {typeof GitConfig.$AccessLevel.GUEST} */ (10), reporter: /** @type {typeof GitConfig.$AccessLevel.REPORTER} */ (20), developer: /** @type {typeof GitConfig.$AccessLevel.DEVELOPER} */ (30), maintainer: /** @type {typeof GitConfig.$AccessLevel.MAINTAINER} */ (40), owner: /** @type {typeof GitConfig.$AccessLevel.OWNER} */ (50) }; |