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
Right now there are only bindings for a general context. Accessing input / output bindings is not typesafe: https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-trigger?tabs=javascript
context.bindings.myBlob
Instead it should be possible to provide a generic argument to the Context interface that holds a typed version of the bindings
const typedContext : Context<{ myBlob: BlobTriggerIn }>
Without these typings the typescript story of azure functions is incomplete.
The text was updated successfully, but these errors were encountered:
context.bindings
We have improved these in the new programming model. Any further suggestions should be filed in this repo: https://github.com/Azure/azure-functions-nodejs-library
Sorry, something went wrong.
No branches or pull requests
Right now there are only bindings for a general context. Accessing input / output bindings is not typesafe:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-trigger?tabs=javascript
Instead it should be possible to provide a generic argument to the Context interface that holds a typed version of the bindings
Without these typings the typescript story of azure functions is incomplete.
The text was updated successfully, but these errors were encountered: