If the TS defenition I have contains import { ... } from "external-library-from-node_modules";, will flowgen get those defenitions from the external-...-node_modules library and put them in the resulting flow libdef?
(asking because afaik flow-typed (and flow itself) does not support require(...)ing or importing external libdefs)
If the TS defenition I have contains
import { ... } from "external-library-from-node_modules";
, willflowgen
get those defenitions from theexternal-...-node_modules
library and put them in the resulting flow libdef? (asking because afaik flow-typed (and flow itself) does not supportrequire(...)
ing orimport
ing external libdefs)