We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following code
declare namespace Search { type MetadataSettings = Settings.Param; namespace Settings { type Param = (Pick<_Impl, 'cache'> | Pick<_Impl, 'results'>) & Partial<Pick<_Impl, keyof _Impl>>; interface _Impl { cache: string; results: string; } } }
is translated to:
// [test] nonDeclarations.Search.kt typealias MetadataSettings = dynamic // ------------------------------------------------------------------------------------------ // [test] aaa.Search.Settings.kt package Search.Settings external interface _Impl { var cache: String var results: String }
While actually we expect typealias to be gone completely
The text was updated successfully, but these errors were encountered:
98bb519
No branches or pull requests
Following code
is translated to:
While actually we expect typealias to be gone completely
The text was updated successfully, but these errors were encountered: