UNPKG

@public-ui/components

Version:

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

13 lines (12 loc) 570 B
import type { Generic } from 'adopted-style-sheets'; import type { PropLabel } from '../props'; type RequiredProps = { symbol: string; } & PropLabel; type OptionalProps = NonNullable<unknown>; type RequiredStates = RequiredProps; type OptionalStates = NonNullable<unknown>; export type SymbolProps = Generic.Element.Members<RequiredProps, OptionalProps>; export type SymbolStates = Generic.Element.Members<RequiredStates, OptionalStates>; export type SymbolAPI = Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates>; export {};