import { DropdownListOption, DropdownOptionGroup } from ".."; export default class DropdownListHelper { static isOptionGroup(item: DropdownListOption | DropdownOptionGroup) { if ((item as any).dataRow == null && (item as any).children != null) { return true; } return false; } }