UNPKG

@cmk/fe_utils

Version:
23 lines (21 loc) 562 B
import { ExtendedObjectSchemaType, PropertyType } from '../schemaTypes' export const ANIMATION_EVENTS: ExtendedObjectSchemaType['properties'] = { onAnimationEnd: { type: PropertyType.eventHandler, required: false, category: 'events', eventType: 'animation', }, onAnimationStart: { type: PropertyType.eventHandler, required: false, category: 'events', eventType: 'animation', }, onAnimationIteration: { type: PropertyType.eventHandler, required: false, category: 'events', eventType: 'animation', }, }