| 1 | export type Theme = 'auto' | 'light' | 'dark'; |
| 2 | |
| 3 | export interface DevtoolsOptions { |
| 4 | container?: HTMLElement; |
| 5 | style?: Partial<CSSStyleDeclaration>; |
| 6 | } |
| 7 | |
| 8 | /** |
| 9 | * Creates an InstantSearch.css DevTools panel to configure CSS variables in real-time. |
nothing calls this directly
no outgoing calls
no test coverage detected