import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link UIChart.pt} * @group Interface */ interface ChartPassThroughOptions { /** * Used to pass attributes to the host's DOM element. */ host?: PassThroughOption; /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; /** * Used to pass attributes to the canvas DOM element. */ canvas?: PassThroughOption; } /** * Defines valid pass-through options in Chart. * @see {@link ChartPassThroughOptions} * * @template I Type of instance. */ type ChartPassThrough = PassThrough>; export type { ChartPassThrough, ChartPassThroughOptions };