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
I am using V2 doT like so:
import * as doT from 'doT'; const tmpl = doT.template("{{=foo}}{{=bar}}", {argName: ["foo", "bar"]}) tmpl({foo: 1, bar: 2}) // "12"
And it works just dandy. However, I am not seeing any types. In vscode I get the following message on my import:
Could not find a declaration file for module 'doT'. 'node_modules/dot/doT.js' implicitly has an 'any' type.ts(7016)
Am I missing something? It would be helpful to see an example with working types.
The text was updated successfully, but these errors were encountered:
there are no type declarations in the package, it's JS
Sorry, something went wrong.
No branches or pull requests
I am using V2 doT like so:
And it works just dandy. However, I am not seeing any types. In vscode I get the following message on my import:
Am I missing something? It would be helpful to see an example with working types.
The text was updated successfully, but these errors were encountered: