UNPKG

@public-ui/components

Version:

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

10 lines (9 loc) 328 B
import type { Generic } from 'adopted-style-sheets'; type RequiredProps = NonNullable<unknown>; type OptionalProps = { alert: boolean; touched: boolean; }; export type Props = Generic.Element.Members<RequiredProps, OptionalProps>; export type Watches = Generic.Element.Watchers<RequiredProps, OptionalProps>; export {};