@nomadmystic/wordpress-scaffold-cli
Version:
This project is created to speed up WordPress development
13 lines (11 loc) • 427 B
text/typescript
import InitAnswers from '../project/interface-init-answers.js';
import ThemeAnswers from '../theme/interface-theme-answers.js';
export default interface InquirerCliOptions {
type?: string | void;
name?: string | void;
message?: string | void;
default?: boolean | string | void;
choices?: Array<string>
when?(answers: InitAnswers | ThemeAnswers): void;
validate?(value: string): boolean | string;
}