// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { Observable } from "rxjs"; /** Global config for the Bitwarden Design System */ export abstract class CompactModeService { /** * When true, enables "compact mode". * * Component authors can also hook into compact mode with the `bit-compact:` Tailwind variant. **/ enabled$: Observable; }