| 9 | import {createContext, useContext, useMemo} from '#preact'; |
| 10 | |
| 11 | export interface AmpContext { |
| 12 | renderable: boolean; |
| 13 | playable: boolean; |
| 14 | loading: Loading_Enum; |
| 15 | notify?: () => {}; |
| 16 | } |
| 17 | |
| 18 | export interface ProviderProps { |
| 19 | renderable?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected