```swift public struct Bytes { public typealias Element = Int8 public func append(_ element: Element) } ``` `Bytes.append(_:)` should be translated to `void append(java.lang.Byte element)` To do that JExtract should support `typealias` declaration.
Bytes.append(_:)should be translated tovoid append(java.lang.Byte element)To do that JExtract should support
typealiasdeclaration.