You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
declare module "normalize-wheel-es" { |
|
interface NormalizedWheelEvent { |
|
spinX: number; |
|
spinY: number; |
|
pixelX: number; |
|
pixelY: number; |
|
} |
|
|
|
function normalizeWheel(e: WheelEvent): NormalizedWheelEvent; |
|
export default normalizeWheel; |
|
export { NormalizedWheelEvent }; |
|
}
|
|
|