Skip to content

Commit

Permalink
fix(Types): Fix NodePyATVFocusState typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 committed Jan 15, 2024
1 parent cf194fd commit cc96a83
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ export enum NodePyATVPowerState {
}

export enum NodePyATVFocusState {
// @deprecated Please use `NodePyATVFocusState.focused` instead
focued = 'focused',

// Doublicate enum value due to typo, will be removed in next breaking change
// @todo remove in next breaking change
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
focused = 'focused',

unfocused = 'unfocused'
}

Expand Down

0 comments on commit cc96a83

Please sign in to comment.