UNPKG

@public-ui/components

Version:

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

15 lines (14 loc) 629 B
import type { Generic } from 'adopted-style-sheets'; import type { PropHref, PropLabel, PropVariantQuote } from '../props'; type RequiredProps = { quote: string; } & PropHref; type OptionalProps = PropLabel & PropVariantQuote; type RequiredStates = { quote: string; } & PropHref & PropVariantQuote; type OptionalStates = PropLabel; export type QuoteProps = Generic.Element.Members<RequiredProps, OptionalProps>; export type QuoteStates = Generic.Element.Members<RequiredStates, OptionalStates>; export type QuoteAPI = Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates>; export {};