@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 591 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { InputEmailProps, InputEmailWatches, MultiplePropType } from '../../schema';
import { InputTextEmailController } from '../input-text/controller';
export declare class InputEmailController extends InputTextEmailController implements InputEmailWatches {
protected readonly component: Generic.Element.Component & InputEmailProps;
constructor(component: Generic.Element.Component & InputEmailProps, name: string, host?: HTMLElement);
validateMultiple(value?: MultiplePropType): void;
componentWillLoad(): void;
}