Applied Prettier auto-formatting across: - status-dashboard/server: 50 files reformatted - service-registry: multiple packages reformatted Changes: - Consistent single quotes, trailing commas - Proper import organization with type imports - PEP 8-style blank lines between sections - Arrow function simplification - Object shorthand syntax ESLint status: - status-dashboard: 0 errors, 99 warnings (progressive rules) - service-registry: 0 errors, 120 warnings (progressive rules) All 333 tests passing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
/**
|
|
* Styled Components Type Augmentation
|
|
*
|
|
* Extends styled-components DefaultTheme with our ThemeInterface.
|
|
* This allows TypeScript to recognize theme properties in styled components.
|
|
*/
|
|
|
|
import 'styled-components'
|
|
import type { ThemeInterface } from '@ui/theme'
|
|
|
|
declare module 'styled-components' {
|
|
export interface DefaultTheme extends ThemeInterface {}
|
|
}
|