a zip code crypto-currency system good for red ONLY

click-block.d.ts 700B

1234567891011121314151617181920212223
  1. import { ElementRef, Renderer } from '@angular/core';
  2. import { App } from '../app/app';
  3. import { Config } from '../../config/config';
  4. import { Platform } from '../../platform/platform';
  5. /**
  6. * @hidden
  7. */
  8. export declare class ClickBlock {
  9. private plt;
  10. private elementRef;
  11. private renderer;
  12. private _tmr;
  13. private _showing;
  14. private _start;
  15. private _minEnd;
  16. isEnabled: boolean;
  17. constructor(app: App, config: Config, plt: Platform, elementRef: ElementRef, renderer: Renderer);
  18. activate(shouldShow: boolean, expire?: number, minDuration?: number): void;
  19. /** @internal */
  20. _activate(shouldShow: boolean): void;
  21. private _setElementClass(className, add);
  22. }