UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

12 lines (10 loc) 189 B
/** * An option that can be put into a chooser * @author Gabe Abrams */ type ChooserOption = { description: string, tag?: string, index?: number, }; export default ChooserOption;