UNPKG

@public-ui/components

Version:

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

11 lines (10 loc) 564 B
import type { Generic } from 'adopted-style-sheets'; import type { PropLabel, PropToolbarItems } from '../props'; type RequiredProps = PropLabel & PropToolbarItems; type OptionalProps = unknown; type RequiredStates = RequiredProps; type OptionalStates = OptionalProps; export type ToolbarProps = Generic.Element.Members<RequiredProps, OptionalProps>; export type ToolbarStates = Generic.Element.Members<RequiredStates, OptionalStates>; export type ToolbarAPI = Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates>; export {};