chromium/chrome/browser/resources/chromeos/healthd_internals/pages/utils/page_interface.ts

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

export interface HealthdInternalsPage {
  // Update the visibility for the page.
  updateVisibility(isVisible: boolean): void;

  // Update the UI update interval for the page.
  updateUiUpdateInterval(intervalSeconds: number): void;
}