customEvent.ts 130 B

123
  1. export function customEvent(name: string, value: any): CustomChangeEvent {
  2. return { target: { type: 'custom', name, value } }
  3. }