From 973ca3011781f442c559e588decda45f22a8e41f Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 17 Sep 2018 08:32:52 -0700 Subject: [PATCH] Add interface stub for winamp-eqf (No idea why this works. We still need to actually supply the types!) --- js/winamp-eqf.d.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 js/winamp-eqf.d.ts diff --git a/js/winamp-eqf.d.ts b/js/winamp-eqf.d.ts new file mode 100644 index 00000000..6964e5d7 --- /dev/null +++ b/js/winamp-eqf.d.ts @@ -0,0 +1,4 @@ +declare module "winamp-eqf" { + import { parser, creator } from "winamp-eqf"; + export { parser, creator }; +}