()
| 25 | } |
| 26 | |
| 27 | export function create_api< |
| 28 | T extends T_BASE, |
| 29 | U extends U_BASE<T>, |
| 30 | EVENT extends EVENT_BASE |
| 31 | >(): SocketAPIData<T, U, EVENT> { |
| 32 | return { |
| 33 | registered: {}, |
| 34 | registered_any: [], |
| 35 | }; |
| 36 | } |
| 37 | |
| 38 | export function api_register< |
| 39 | T extends T_BASE, |
no outgoing calls
no test coverage detected