1. import $ from 'jquery'
    1. declare module 'jquery' {
    2. interface JqueryInstance {
    3. html: (html: string) => JqueryInstance
    4. }
    5. function $(readyFunc: () => void): void
    6. function $(selector: string): JqueryInstance
    7. declare namespace $ {
    8. namespace fn {
    9. class init {}
    10. }
    11. }
    12. export = $
    13. }