UNPKG

270 BTypeScriptView Raw
1import type { ICommand } from './ICommand.js';
2/**
3 * Interface that should be implemented in order to define
4 * a synchronous command
5 *
6 * @remarks Since 1.5.0
7 * @public
8 */
9export interface Command<Model extends object, Real> extends ICommand<Model, Real, void> {
10}