UNPKG

dce-charts

Version:
9 lines (8 loc) 282 B
/** * Add colors to elements that don't have colors * @author Gabe Abrams * @param items list of items that may or may not have a color prop * @returns items with a color prop defined on every item */ declare const addColors: (items: any[]) => any[]; export default addColors;