Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Aug 22, 2024
1 parent 824f2bb commit 55062b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ember-power-datepicker/src/components/power-datepicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ interface PowerDatepickerArgs {
destination?: string;
disabled?: boolean;
matchTriggerWidth?: boolean;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
onOpen?: Function;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
onClose?: Function;
calculatePosition?: CalculatePosition;

Expand Down
2 changes: 2 additions & 0 deletions ember-power-datepicker/src/types/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ export interface AssignRegistry {
}

declare module '@glint/environment-ember-loose/registry' {
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export default interface Registry
extends EmbroiderUtilRegistry /* other registries here */ {
// ...
}

// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export default interface Registry
extends AssignRegistry /* other registries here */ {
// ...
Expand Down

0 comments on commit 55062b3

Please sign in to comment.