UNPKG

@public-ui/components

Version:

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

11 lines (10 loc) 596 B
import type { Generic } from 'adopted-style-sheets'; import type { PropLabel, PropShow, PropSpinVariant } from '../props'; type RequiredProps = NonNullable<unknown>; type OptionalProps = PropSpinVariant & PropShow & PropLabel; type RequiredStates = PropSpinVariant; type OptionalStates = PropShow & PropLabel; 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 {};