@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
7 lines (6 loc) • 304 B
TypeScript
export type HostInternals = {
role: string | null;
ariaLabelledByElements: HTMLElement[];
};
export declare const resolveTargets: (host: HTMLElement | undefined, value?: string) => HTMLElement[];
export declare const attachInternals: (host: HTMLElement | undefined) => HostInternals | undefined;