@elastic/charts
Version:
Elastic-Charts data visualization library
22 lines • 487 B
TypeScript
import type { CategoryKey } from './category';
import type { SpecId } from '../utils/ids';
/**
* A string key used to uniquely identify a series
* @public
*/
export type SeriesKey = CategoryKey;
/**
* A series identifier
* @public
*/
export type SeriesIdentifier = {
/**
* The SpecId, used to identify the spec
*/
specId: SpecId;
/**
* A string key used to uniquely identify a series
*/
key: SeriesKey;
};
//# sourceMappingURL=series_id.d.ts.map