global.d.ts 582 B

1234567891011121314151617181920212223242526
  1. /* eslint no-var: 0 */
  2. /* eslint vars-on-top: 0 */
  3. declare global {
  4. var stationInterval: number;
  5. var YT: any;
  6. var stationNextSongTimeout: any;
  7. var grecaptcha: any;
  8. var addToPlaylistDropdown: any;
  9. var scrollDebounceId: any;
  10. var focusedElementBefore: any;
  11. var draggingItem:
  12. | undefined
  13. | {
  14. itemIndex: number;
  15. itemListUuid: string;
  16. itemGroup: string;
  17. itemOnMove?: (index: number) => any;
  18. initialItemIndex: number;
  19. initialItemListUuid: string;
  20. };
  21. var soundcloudIframeLockUuid: string;
  22. var soundcloudIframeLockUuids: Set<string>;
  23. }
  24. export {};