import type { CommandSet } from "../command/CommandSet" interface Renderer { executeCommand: (commands: CommandSet[] | CommandSet) => void; } export type { Renderer };