jQuery-SlotMachine icon indicating copy to clipboard operation
jQuery-SlotMachine copied to clipboard

[Feature request] Typescript definition

Open redplane opened this issue 6 years ago • 1 comments

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,

redplane avatar Nov 09 '18 02:11 redplane

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" />

albertorcf avatar Sep 18 '19 21:09 albertorcf