@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 383 B
TypeScript
import type { HrefProp, LabelProp, Stringified } from '../../schema';
import type { Generic } from 'adopted-style-sheets';
type HrefOrLabelProp = HrefProp | LabelProp;
export declare const watchNavLinks: (className: string, component: Generic.Element.Component & {
state: {
_links: HrefOrLabelProp[];
};
}, value?: Stringified<HrefOrLabelProp[]>) => void;
export {};