Sha256: 2da90392f1c4d6ff00b864f83e99f3ce8a9c9de116ddf3731e750bb455bb03d0
Contents?: true
Size: 394 Bytes
Versions: 26
Compression:
Stored size: 394 Bytes
Contents
import { type Instance } from '../../setup'; import { EventType } from '../types'; export interface BehaviorPlugin<Type extends EventType> { (event: DocumentEventMap[Type], target: Element, instance: Instance): // eslint-disable-next-line @typescript-eslint/no-invalid-void-type void | (() => void); } export declare const behavior: { [Type in EventType]?: BehaviorPlugin<Type>; };
Version data entries
26 entries across 26 versions & 1 rubygems