UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

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