Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
camertron committed Mar 12, 2024
1 parent 22b1f80 commit 21f1e2b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tab-container-element-define.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {TabContainerElement} from './tab-container-element.js'
import {TabContainerChangeEvent, TabContainerElement} from './tab-container-element.js'

const root = (typeof globalThis !== 'undefined' ? globalThis : window) as typeof window
try {
Expand Down Expand Up @@ -28,12 +28,12 @@ declare global {
}
}
interface GlobalEventHandlersEventMap {
'tab-container-change': TabContainerChangeEvent;
'tab-container-changed': TabContainerChangeEvent;
'tab-container-change': TabContainerChangeEvent
'tab-container-changed': TabContainerChangeEvent
}
interface ElementEventMap {
'tab-container-change': TabContainerChangeEvent;
'tab-container-changed': TabContainerChangeEvent;
'tab-container-change': TabContainerChangeEvent
'tab-container-changed': TabContainerChangeEvent
}
}

Expand Down

0 comments on commit 21f1e2b

Please sign in to comment.