@webuildbots/webuildbots-sdk
Version:
webuildbots sdk
13 lines (12 loc) • 323 B
TypeScript
import ChoiceBuilder from './choice-builder';
/**
* Where a {@link ChoiceBuilder} is required for a parameter but we already have a prebuild choice this class should be
* used.
*
* @author Stu
*/
export default class DefinedCB extends ChoiceBuilder {
choice: any;
constructor(choice: any);
build(): any;
}