import type { Command } from "./Command"; import type { CommandType } from "./CommandType"; /** * Rendering command are used to execute gl programs. */ interface RenderCommand extends Command { type: CommandType.Render } export type { RenderCommand };