mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
* [deps] Autofill: Update prettier to v3.6.2 * fix: [PM-23425] Fix prettier issues related to dependency updte Signed-off-by: Ben Brooks <bbrooks@bitwarden.com> * [deps] Autofill: Update prettier to v3.6.2 * [deps] Autofill: Update prettier to v3.7.3 * [PM-29379] Fix prettier issues found with the updated Prettier 3.7.3 Signed-off-by: Ben Brooks <bbrooks@bitwarden.com> --------- Signed-off-by: Ben Brooks <bbrooks@bitwarden.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ben Brooks <bbrooks@bitwarden.com>
14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
import { DeviceManagementComponentServiceAbstraction } from "./device-management-component.service.abstraction";
|
|
|
|
/**
|
|
* Default implementation of the device management component service
|
|
*/
|
|
export class DefaultDeviceManagementComponentService implements DeviceManagementComponentServiceAbstraction {
|
|
/**
|
|
* Show header information in web client
|
|
*/
|
|
showHeaderInformation(): boolean {
|
|
return true;
|
|
}
|
|
}
|