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