@umbraco-ui/uui-textarea
Version:
Custom element wrapping the native textarea 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) • 332 B
TypeScript
import { UUIEvent } from '@umbraco-ui/uui-base/lib/events';
import { UUITextareaElement } from './uui-textarea.element';
export declare class UUITextareaEvent extends UUIEvent<{}, UUITextareaElement> {
static readonly CHANGE: string;
static readonly INPUT: string;
constructor(evName: string, eventInit?: any | null);
}