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
The typings in this package currently aren't exported to be used externally, which means that extracting types from Api methods would work something like:
In each Api folder, the .types.ts file contains all the named types, but they aren't exported in the index.ts file.
This can easily be fixed by exporting the types in the index.ts file of each Api module folder.
export*from"./~.types";
The text was updated successfully, but these errors were encountered:
The typings in this package currently aren't exported to be used externally, which means that extracting types from Api methods would work something like:
In each Api folder, the
.types.ts
file contains all the named types, but they aren't exported in theindex.ts
file.This can easily be fixed by exporting the types in the
index.ts
file of each Api module folder.The text was updated successfully, but these errors were encountered: