- Add Backspace-design-prototype.html: finalized "Aether Drift" design language with warm matte surfaces and subtle frosted glass accents - Update CLAUDE.md with DESIGN SYSTEM section and remove Discord clone references - Rename all Opencord references to Backspace across the full codebase - Archive outdated design experiments and Discord-specific assets - Add science-backed accessibility fallback (prefers-reduced-transparency)
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
// Frontend permission helpers — wraps shared permission constants.
|
|
// Always works with string representations (never raw bigint in state).
|
|
|
|
export {
|
|
PermissionBits,
|
|
ALL_PERMISSIONS,
|
|
DEFAULT_EVERYONE_PERMISSIONS,
|
|
hasPermissionBit,
|
|
permissionsToString,
|
|
stringToPermissions,
|
|
} from '@backspace/shared/src/permissions';
|