import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link ProgressSpinner.pt} * @group Interface */ interface ProgressSpinnerPassThroughOptions { /** * 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 spin's DOM element. */ spin?: PassThroughOption; /** * Used to pass attributes to the circle's DOM element. */ circle?: PassThroughOption; } /** * Defines valid pass-through options in ProgressSpinner. * @see {@link ProgressSpinnerPassThroughOptions} * * @template I Type of instance. */ type ProgressSpinnerPassThrough = PassThrough>; export type { ProgressSpinnerPassThrough, ProgressSpinnerPassThroughOptions };