-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Export Schema and Column types so they can be used externally #39
Conversation
Signed-off-by: Aaron Sutula <[email protected]>
Signed-off-by: Aaron Sutula <[email protected]>
No idea why the tests would be failing. Any ideas what's up? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a result of just running npm install
in the root of the project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like all the updates are needed, so this works well.
Yeah, this is a known bug #40. If you see that the tests are failing with |
Nice! |
Rerunning tests again... 🤞🏼 |
Can't use the
Schema
type without this.I was trying to use
type Schema = Table["schema"]
and then exporting things that useSchema
, but of course got a ts error that the SDK's internalSchema
type can't be named, which makes sense since it wasn't exported.Figure we might as well export
Column
as well.