UNPKG

@public-ui/components

Version:

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

11 lines (10 loc) 382 B
import type { Generic } from 'adopted-style-sheets'; import type { AlertProps } from '../components'; import type { Stringified } from '../types'; export type MsgPropType = AlertProps & { _description: string; }; export type PropMsg = { msg: MsgPropType; }; export declare const validateMsg: (component: Generic.Element.Component, value?: Stringified<MsgPropType>) => void;