Skip to main content

MyCommand

사용자 정의 명령어를 나타내는 인터페이스입니다.

Signature

interface MyCommand<Config = any, Name extends string = string> 

Properties

Property

Modifiers

Type

Description

cliOptions?

ConfigType<Config>[keyof Config][]

(Optional) 명령어의 CLI 옵션 목록입니다.

default

Partial<Config>

명령어의 기본 구성입니다.

description

string

명령어의 설명입니다.

name

Name

명령어의 이름입니다.

run

(config: Config) => void

명령어를 실행하는 함수입니다.