UNPKG

calcium-lang

Version:
8 lines (7 loc) 191 B
import Environment from "../runtime/environment"; /** * Each class that implements `Command` has own behaviors. */ export default interface Command { execute(env: Environment): void; }