6 lines
267 B
TypeScript
6 lines
267 B
TypeScript
export function composeEventHandlers<E>(originalEventHandler?: (event: E) => void, ourEventHandler?: (event: E) => void, { checkForDefaultPrevented }?: {
|
|
checkForDefaultPrevented?: boolean | undefined;
|
|
}): (event: E) => void;
|
|
|
|
//# sourceMappingURL=index.d.ts.map
|