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, instantiateFromUrl allows specifying one componentUrl. It would be interesting to specify an array and get back a key/value object.
instantiateFromUrl
componentUrl
The text was updated successfully, but these errors were encountered:
Implementation suggestion: it basically comes down to instantiating a Record<string, any> object; if needed, a dummy class could do:
Record<string, any>
class DummyRecord { constructor (record: Record<string, any>) { return record; } }
Sorry, something went wrong.
No branches or pull requests
Currently,
instantiateFromUrl
allows specifying onecomponentUrl
.It would be interesting to specify an array and get back a key/value object.
The text was updated successfully, but these errors were encountered: