Closed Schahen closed 4 years ago
Consider following example:
// index.d.ts export * from "./defs"; // defs.d.ts import {Api} from "_api"; declare function createApi(): Api // node_modules/_api/index.d.ts export declare interface Api {}
Is translated to just
external fun createApi(): Api
Apart from missing JsModule (for what we have a loot of tasks, this one was is actually fixed and deployed)
Consider following example:
Is translated to just