Declare module so webpack can do its work

pull/344/head
Matthias Riegler 7 years ago committed by GitHub
parent 42b5382510
commit 4c73d76692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,8 +2,10 @@
// Project: http://serratus.github.io/quaggaJS/ // Project: http://serratus.github.io/quaggaJS/
// Definitions by: Cam Birch, Peter Horwood aka Madman Pierre, Dan Manastireanu <https://github.com/danmana> // Definitions by: Cam Birch, Peter Horwood aka Madman Pierre, Dan Manastireanu <https://github.com/danmana>
declare var Quagga: QuaggaJSStatic; declare module "quagga" {
export default Quagga; var Quagga: QuaggaJSStatic;
export default Quagga;
}
interface QuaggaJSStatic { interface QuaggaJSStatic {
/** /**
@ -235,7 +237,7 @@ interface QuaggaJSResultCollector {
/* /*
* a static function that returns you a ResultCollector * a static function that returns you a ResultCollector
*/ */
create?(QuaggaJSResultCollector): QuaggaJSResultCollector; create?(param: QuaggaJSResultCollector): QuaggaJSResultCollector;
getResults?(): QuaggaJSCodeResult[]; getResults?(): QuaggaJSCodeResult[];
} }

Loading…
Cancel
Save