global.d.ts 273 B

123456789101112131415
  1. declare namespace GlobalMixins
  2. {
  3. interface Application
  4. {
  5. ticker: import('@pixi/ticker').Ticker;
  6. stop(): void;
  7. start(): void;
  8. }
  9. interface IApplicationOptions
  10. {
  11. autoStart?: boolean;
  12. sharedTicker?: boolean;
  13. }
  14. }