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