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

7 lines
154 B
TypeScript

import { Options } from '../../config/options.ts';
export interface CommandInterface {
name: string;
execute: (options: Options) => Promise<void>;
}