jQuery-SlotMachine
jQuery-SlotMachine copied to clipboard
[Feature request] Typescript definition
Hi,
I'm very exicited with you jQuery-SlotMachine. Nowaday, typescript is becoming a necessary part of front-end development.
Can you make a typescript definition for your library please?
Thanks,
As a primitive workaround in a ionic/stencil project:
Declare the types in typings.d.ts.
declare module 'jquery-slotmachine/lib/slot-machine' {
class SlotMachine {
constructor(
element: any,
options: any
);
}
export = SlotMachine;
}
Then I can use it:
import SlotMachine from 'jquery-slotmachine/lib/slot-machine';
I still have to load the css file in index.html.
<link rel="stylesheet" href="assets/css/jquery.slotmachine.min.css" type="text/css" media="screen" />