UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

11 lines (10 loc) 561 B
import type { Generic } from 'adopted-style-sheets'; import type { PropShow, PropSpinVariant } from '../props'; type RequiredProps = NonNullable<unknown>; type OptionalProps = PropSpinVariant & PropShow; type RequiredStates = PropSpinVariant; type OptionalStates = PropShow; export type SpinProps = Generic.Element.Members<RequiredProps, OptionalProps>; export type SpinStates = Generic.Element.Members<RequiredStates, OptionalStates>; export type SpinAPI = Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates>; export {};