You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
526 B
10 lines
526 B
import Generator from 'yeoman-generator';
|
|
/**
|
|
*
|
|
* Prompts for entry points, either if it has multiple or one entry
|
|
*
|
|
* @param {Object} self - A variable holding the instance of the prompting
|
|
* @param {Object} answer - Previous answer from asking if the user wants single or multiple entries
|
|
* @returns {Object} An Object that holds the answers given by the user, later used to scaffold
|
|
*/
|
|
export default function entry(self: Generator, multiEntries: boolean, autoGenerateDefaults?: boolean): Promise<string | object>;
|
|
|