How does `swiftExport` work with `@HiddenFromObjC...
# swift-export
n
How does
swiftExport
work with
@HiddenFromObjC
- does it obey the annotation as well, or is there a counterpart? I want to remove the need to export Koin-related files in my public API for iOS (still needed for Android [androidContext] )
a
Yes,
@HiddenFromObjC
is supported and works the same way. The name isn't perfect, but too much of our ecosystem already relies on it.
n
👍 Thanks, good!