timing-object
Version:
An implementation of the timing object specification.
9 lines (7 loc) • 381 B
text/typescript
import { TEventTargetConstructor } from './event-target-constructor';
import { TEventTargetFactory } from './event-target-factory';
import { TWrapEventListenerFunction } from './wrap-event-listener-function';
export type TEventTargetConstructorFactory = (
createEventTarget: TEventTargetFactory,
wrapEventListener: TWrapEventListenerFunction
) => TEventTargetConstructor;