global.d.ts 199 B

12345678910111213
  1. import JQueryStatic from 'jquery'
  2. interface ExtInterface {
  3. [v: string]: any
  4. }
  5. declare global {
  6. // @ts-ignore
  7. // const $: JQueryStatic;
  8. // @ts-ignore
  9. const Ext: ExtInterface;
  10. }