@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 454 B
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { AvatarAPI, AvatarStates, ImageSourcePropType, LabelPropType } from '../../schema';
export declare class KolAvatarWc implements AvatarAPI {
render(): JSX.Element;
_src?: ImageSourcePropType;
_label: LabelPropType;
state: AvatarStates;
validateSrc(value?: ImageSourcePropType): void;
validateLabel(value?: LabelPropType): void;
componentWillLoad(): void;
}