UNPKG

presta

Version:

Hyper minimal framework for the modern web.

6 lines (5 loc) 236 B
import { Event } from '../'; /** * Takes a `Partial<Event>` and returns `Event`. Requires at least an `event.path` property. */ export declare function normalizeEvent(event: Pick<Event, 'path'> & Partial<Omit<Event, 'path'>>): Event;