/** * Helper interface for series types to add optional members to all series * instances. * * Use the `declare module 'Types'` pattern to overload the interface in this * definition file. */ export interface SeriesBase { } export default SeriesBase;