These two import styles are valid:
import type { Command } from "commander"
import { createCommand } from "commander"
import { createCommand, type Command } from "commander"
However, some projects might prefer one style over the other. A refactor option to go from one to the other would be nice.
These two import styles are valid:
However, some projects might prefer one style over the other. A refactor option to go from one to the other would be nice.