Skip to content
This repository has been archived by the owner on Nov 6, 2019. It is now read-only.

"<file path>".Foo shows up when referencing exported type #97

Closed
epabst opened this issue Sep 18, 2018 · 0 comments
Closed

"<file path>".Foo shows up when referencing exported type #97

epabst opened this issue Sep 18, 2018 · 0 comments

Comments

@epabst
Copy link
Contributor

epabst commented Sep 18, 2018

Example:

export type StructureType = {
    name: string;
    details?: string;
};
export interface Registry {
    register(type: StructureType)
}

ends up including:

external interface Registry {
    fun register(type: `"testData/objectType/useExportedType".StructureType`)
}

but should just have:

external interface Registry {
    fun register(type: StructureType)
}
@epabst epabst changed the title "<file path>".Foo shows up when referencing exported type "<file path>".Foo shows up when referencing exported type Sep 18, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant