| 7 | }; |
| 8 | |
| 9 | export interface ICache<T> { |
| 10 | get: (key: string) => T | undefined; |
| 11 | set: (key: string, value: T) => void; |
| 12 | reset: () => void; |
| 13 | } |
| 14 | |
| 15 | class StyleCache implements ICache<ResponsiveStyle> { |
| 16 | private static instance: StyleCache; |
nothing calls this directly
no outgoing calls
no test coverage detected