| 166 | // ----------- AndroidSocket ----------- |
| 167 | export type AndroidSocketInitializer = {}; |
| 168 | export interface AndroidSocketEventTarget { |
| 169 | on(event: 'data', callback: (params: AndroidSocketDataEvent) => void): this; |
| 170 | on(event: 'close', callback: (params: AndroidSocketCloseEvent) => void): this; |
| 171 | } |
| 172 | export interface AndroidSocketChannel extends AndroidSocketEventTarget, Channel { |
| 173 | _type_AndroidSocket: boolean; |
| 174 | write(params: AndroidSocketWriteParams, progress?: Progress): Promise<AndroidSocketWriteResult>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…