You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently importing types, e.g. ParamNames, from nested files in the npm package, e.g. freemarker-parser/enum/ParamNames. This works, but it can be a bit of a hassle to hunt down the type I need.
It would be really convenient if I could import node/enum/param types directly from root. E.g. import { ConditionNode, CallExpression, ParamNames } from 'freemarker-parser'.
What do you think?
The text was updated successfully, but these errors were encountered:
I'm currently importing types, e.g.
ParamNames
, from nested files in the npm package, e.g.freemarker-parser/enum/ParamNames
. This works, but it can be a bit of a hassle to hunt down the type I need.It would be really convenient if I could import node/enum/param types directly from root. E.g.
import { ConditionNode, CallExpression, ParamNames } from 'freemarker-parser'
.What do you think?
The text was updated successfully, but these errors were encountered: