You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is to add support to the Dart JS Interop Generator for supporting imported/exported declarations.
Some declaration files may export declarations from other files, and we should handle these declarations, most likely by parsing the necessary file, filtering for the specified declaration, and associating any aliases placed on the declaration.
This issue also addresses handling default exports, defaulting their names to default when not named.
// a.tsexport{a,b,c}// named itemsexportdefaultc;// named default exportexport*from"file.ts"// export from file// b.tsimport{aasz}from"a.ts";export{z}// aliasing