File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
packages/devtools-a11y/src/ui Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11/** @jsxImportSource solid-js */
22
33import { For , Show } from 'solid-js'
4+ import type { createA11yPanelStyles } from './styles'
45import type { A11yIssue , SeverityThreshold } from '../types'
56
6- type PanelStyles = ReturnType < typeof import ( './styles' ) . createA11yPanelStyles >
7+ type PanelStyles = ReturnType < typeof createA11yPanelStyles >
78
89interface A11yIssueCardProps {
910 styles : PanelStyles
Original file line number Diff line number Diff line change 33import { For , Show } from 'solid-js'
44import { IMPACTS } from './panelUtils'
55import { SEVERITY_LABELS } from './styles'
6+ import type { createA11yPanelStyles } from './styles'
67import { A11yIssueCard } from './A11yIssueCard'
78import type { GroupedIssues , SeverityThreshold } from '../types'
89
9- type PanelStyles = ReturnType < typeof import ( './styles' ) . createA11yPanelStyles >
10+ type PanelStyles = ReturnType < typeof createA11yPanelStyles >
1011
1112interface A11yIssueListProps {
1213 styles : PanelStyles
Original file line number Diff line number Diff line change 22
33import { For , Show , createMemo } from 'solid-js'
44import { CATEGORIES , CATEGORY_LABELS } from './styles'
5+ import type { createA11yPanelStyles } from './styles'
56import type {
67 A11yPluginOptions ,
78 RuleCategory ,
@@ -10,7 +11,7 @@ import type {
1011 SeverityThreshold ,
1112} from '../types'
1213
13- type PanelStyles = ReturnType < typeof import ( './styles' ) . createA11yPanelStyles >
14+ type PanelStyles = ReturnType < typeof createA11yPanelStyles >
1415
1516interface A11ySettingsOverlayProps {
1617 styles : PanelStyles
You can’t perform that action at this time.
0 commit comments