import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link Knob.pt} * @group Interface */ interface KnobPassThroughOptions { /** * Used to pass attributes to the host's DOM element. */ host?: PassThroughOption; /** * Used to pass attributes to the SVG's DOM element. */ svg?: PassThroughOption; /** * Used to pass attributes to the range's DOM element. */ range?: PassThroughOption; /** * Used to pass attributes to the value's DOM element. */ value?: PassThroughOption; /** * Used to pass attributes to the text's DOM element. */ text?: PassThroughOption; } /** * Defines valid pass-through options in Knob component. * @see {@link KnobPassThroughOptions} * * @template I Type of instance. */ type KnobPassThrough = PassThrough>; export type { KnobPassThrough, KnobPassThroughOptions };