Open
Description
I'm trying to write a codemod that changes from the old style of type imports:
import type {MyType} from './types';
to the newer style:
import {type MyType} from './types';
I saw you have some import helpers, but don't see anything that allows creation of an ImportSpecifier with importKind: "type"
, which I think is what is needed. Maybe you could consider adding it?
Thanks!