Skip to content

Commit b057ad2

Browse files
committed
fix(multi-backend): touch backend type declaration had implicit any. fix #5
1 parent 6c8e654 commit b057ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular-skyhook-multi-backend/src/ambient.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ declare module "dnd-multi-backend" {
2323

2424
declare module "react-dnd-touch-backend" {
2525
import { Backend } from "dnd-multi-backend";
26-
const TouchBackend: ({ enableMouseEvents: boolean }) => Backend;
26+
const TouchBackend: ({ enableMouseEvents }: { enableMouseEvents: boolean }) => Backend;
2727
export default TouchBackend;
2828
}

0 commit comments

Comments
 (0)