@umbraco-ui/uui-input
Version:
Custom element wrapping the native input element. This is a formAssociated element, meaning it can participate in a native HTMLForm. In browsers other then Chrome it may require a polyfill.
8 lines (7 loc) • 320 B
TypeScript
import { UUIEvent } from '@umbraco-ui/uui-base/lib/events';
import { UUIInputElement } from './uui-input.element';
export declare class UUIInputEvent extends UUIEvent<{}, UUIInputElement> {
static readonly CHANGE: string;
static readonly INPUT: string;
constructor(evName: string, eventInit?: any | null);
}