Oleg

Results 2 issues of Oleg

Telegraph uses CocoaAsyncSocket that [internally uses](https://github.com/robbiehanson/CocoaAsyncSocket/blob/master/Source/GCD/GCDAsyncSocket.h#L13) [SecureTransport framework](https://developer.apple.com/documentation/security/secure_transport) (for TLS support) that is deprecated since iOS 13 in favour of [Network framework](https://developer.apple.com/documentation/network). Apple may accidentally drop SecureTransport framework from iOS...

enhancement

### Describe the bug Destructured variable is referenced as a default value before being declared ### Input code ```typescript function foo({ a, ...rest }: {}, foo: unknown = rest): unknown...

C-bug