| 7 | type MKEvent = any; |
| 8 | |
| 9 | declare interface MusishMK<E extends BindingsType = {}> { |
| 10 | // Allow `instance` to not be a string, eventually all events should go under their own property |
| 11 | // @ts-ignore |
| 12 | instance: MusicKitInstance; |
| 13 | // [N in keyof E]: E[N]; // This is what we want, but TS doesn't allow it... |
| 14 | [s: string]: any; |
| 15 | } |
| 16 | |
| 17 | declare interface MKProps { |
| 18 | mk: MusishMK; |
nothing calls this directly
no outgoing calls
no test coverage detected