| 47 | } |
| 48 | |
| 49 | interface ApplyEffectFn { |
| 50 | (type: 'transparent' | 'blurbehind' | 'acrylic' | 'unified', options?: { color: string }): void |
| 51 | (type: 'mica', options?: { material?: 'auto' | 'mica' | 'acrylic' | 'tabbed' }): void |
| 52 | (type: 'vibrancy', options: { material: string, alwaysOn?: boolean }): void |
| 53 | } |
| 54 | |
| 55 | interface Effect { |
| 56 | apply: ApplyEffectFn |
nothing calls this directly
no outgoing calls
no test coverage detected