UNPKG

block-obj-builder

Version:

Block object builder

13 lines (12 loc) 326 B
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 { private choice; constructor(choice: any); build(): any; }