| 40 | } |
| 41 | |
| 42 | interface DataStore { |
| 43 | has: (key: string) => boolean |
| 44 | get: <T>(key: string, fallback?: T) => T | undefined |
| 45 | set: (key: string, value: any) => boolean |
| 46 | remove: (key: string) => boolean |
| 47 | } |
| 48 | |
| 49 | interface ApplyEffectFn { |
| 50 | (type: 'transparent' | 'blurbehind' | 'acrylic' | 'unified', options?: { color: string }): void |
nothing calls this directly
no outgoing calls
no test coverage detected