UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

37 lines (34 loc) 1.08 kB
import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link ProgressSpinner.pt} * @group Interface */ interface ProgressSpinnerPassThroughOptions<I = unknown> { /** * Used to pass attributes to the host's DOM element. */ host?: PassThroughOption<HTMLElement, I>; /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption<SVGSVGElement, I>; /** * Used to pass attributes to the spin's DOM element. */ spin?: PassThroughOption<SVGSVGElement, I>; /** * Used to pass attributes to the circle's DOM element. */ circle?: PassThroughOption<SVGCircleElement, I>; } /** * Defines valid pass-through options in ProgressSpinner. * @see {@link ProgressSpinnerPassThroughOptions} * * @template I Type of instance. */ type ProgressSpinnerPassThrough<I = unknown> = PassThrough<I, ProgressSpinnerPassThroughOptions<I>>; export type { ProgressSpinnerPassThrough, ProgressSpinnerPassThroughOptions };