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