We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently there is a list of classes accessible as attribute accessor from the default export of the skygear module:
skygear
import skygear from "skygear"; skygear.Query; skygear.Role; skygear.ACL; skygear.Record; skygear.UserRecord; skygear.Sequence; skygear.Asset; skygear.Reference; skygear.Geolocation; skygear.Database; skygear.Friend; skygear.Follower; skygear.Following; skygear.Error; skygear.ErrorCodes; skygear.AuthContainer; skygear.RelationContainer; skygear.DatabaseContainer; skygear.PubsubContainer; skygear.PushContainer;
It would be good to be able to import these classes with the new es6 module syntax:
import skygear, { Query, Role, ACL, Record, UserRecord, Sequence, Asset, Reference, Geolocation, Database, Friend, Follower, Following, SkygearError, ErrorCodes, AuthContainer, RelationContainer, DatabaseContainer, PubsubContainer, PushContainer } from "skygear";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently there is a list of classes accessible as attribute accessor from the default export of the
skygear
module:It would be good to be able to import these classes with the new es6 module syntax:
The text was updated successfully, but these errors were encountered: