chore: Enforce consistent type imports via @typescript-eslint/consistent-type-imports (#2545)

This commit is contained in:
Dermot Duffy
2026-06-30 17:45:13 -07:00
committed by dermotduffy
parent 8f4ebcc0de
commit 7dc29865b8
589 changed files with 2419 additions and 2103 deletions
+8 -8
View File
@@ -1,20 +1,20 @@
import { CameraManager } from '../../camera-manager/manager.js';
import type { CameraManager } from '../../camera-manager/manager.js';
import { dispatchActionExecutionRequest } from '../../card-controller/actions/utils/execution-request.js';
import { SubmenuInteraction } from '../../components/submenu/types.js';
import { PTZAction } from '../../config/schema/actions/custom/ptz.js';
import { Actions, ActionsConfig } from '../../config/schema/actions/types.js';
import {
import type { SubmenuInteraction } from '../../components/submenu/types.js';
import type { PTZAction } from '../../config/schema/actions/custom/ptz.js';
import type { Actions, ActionsConfig } from '../../config/schema/actions/types.js';
import type {
PTZControlsConfig,
PTZControlType,
} from '../../config/schema/common/controls/ptz.js';
import { HomeAssistant } from '../../ha/types.js';
import { Interaction } from '../../types.js';
import type { HomeAssistant } from '../../ha/types.js';
import type { Interaction } from '../../types.js';
import {
createPTZControlsAction,
createPTZMultiAction,
getActionConfigGivenAction,
} from '../../utils/action.js';
import { PTZControllerActions } from './types';
import type { PTZControllerActions } from './types';
export class PTZController {
private _host: HTMLElement;