UNPKG

@nova-ui/charts

Version:

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that

14 lines (13 loc) 447 B
import { IValueProvider } from "../types"; /** * This class matches the provided instances of type <T> to given series. * It keeps track of already given instances to given entities to avoid conflicts. */ export declare class SequentialValueProvider<T> implements IValueProvider<T> { private values; private providedValues; private lastUsedIndex; constructor(values: T[]); get: (entityId: string) => T; reset(): void; }