unity-builder/cli/commands/command/CommandInterface.ts

7 lines
154 B
TypeScript
Raw Normal View History

2022-04-23 21:17:35 +00:00
import { Options } from '../../config/options.ts';
export interface CommandInterface {
name: string;
execute: (options: Options) => Promise<void>;
}