(buffer: Buffer)
| 1270 | export interface Socket extends stream.Duplex { |
| 1271 | // Extended base methods |
| 1272 | write(buffer: Buffer): boolean; |
| 1273 | write(buffer: Buffer, cb?: Function): boolean; |
| 1274 | write(str: string, cb?: Function): boolean; |
| 1275 | write(str: string, encoding?: string, cb?: Function): boolean; |
no outgoing calls
no test coverage detected