mirror of
https://github.com/bitwarden/browser
synced 2026-02-21 20:04:02 +00:00
Creates a new `DeviceManagementComponent` that fetches devices and formats them before handing them off to a view component for display. View components: - `DeviceManagementTableComponent` - displays on medium to large screens - `DeviceManagementItemGroupComponent` - displays on small screens Feature flag: `PM14938_BrowserExtensionLoginApproval`
12 lines
412 B
TypeScript
12 lines
412 B
TypeScript
/**
|
|
* Service abstraction for device management component
|
|
* Used to determine client-specific behavior
|
|
*/
|
|
export abstract class DeviceManagementComponentServiceAbstraction {
|
|
/**
|
|
* Whether to show header information (title, description, etc.) in the device management component
|
|
* @returns true if header information should be shown, false otherwise
|
|
*/
|
|
abstract showHeaderInformation(): boolean;
|
|
}
|