@umbraco-ui/uui-base
Version:
This is a base dependency for Umbraco UI components. It contains mixins, animations, abstract base classes, UUIEvent base class, and universal types for properties shared by different components
8 lines (7 loc) • 337 B
TypeScript
import { UUIFormControlMixinInterface } from '../mixins';
import { UUIEvent } from './UUIEvent';
export declare class UUIFormControlEvent extends UUIEvent<{}, UUIFormControlMixinInterface<unknown>> {
constructor(evName: string, eventInit?: any | null);
static readonly VALID = "valid";
static readonly INVALID = "invalid";
}