@cmk/fe_utils
Version:
frontend utility library
23 lines (21 loc) • 562 B
text/typescript
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',
},
}