ts-transform-inferno
ts-transform-inferno copied to clipboard
Importing from 'inferno' without var statement
Functions are imported form inferno as var statements:
import * as Inferno from "inferno"; var createVNode = Inferno.createVNode;
Functions could be imported without creating the var statement: `import { createVNode } from "inferno";
This way it would not create 1-n var statements per source file.