a zip code crypto-currency system good for red ONLY

refresher-content.d.ts 776B

12345678910111213141516171819202122232425262728293031
  1. import { Config } from '../../config/config';
  2. import { Refresher } from './refresher';
  3. /**
  4. * @hidden
  5. */
  6. export declare class RefresherContent {
  7. r: Refresher;
  8. private _config;
  9. /**
  10. * @input {string} a static icon to display when you begin to pull down
  11. */
  12. pullingIcon: string;
  13. /**
  14. * @input {string} the text you want to display when you begin to pull down
  15. */
  16. pullingText: string;
  17. /**
  18. * @input {string} An animated SVG spinner that shows when refreshing begins
  19. */
  20. refreshingSpinner: string;
  21. /**
  22. * @input {string} the text you want to display when performing a refresh
  23. */
  24. refreshingText: string;
  25. constructor(r: Refresher, _config: Config);
  26. /**
  27. * @hidden
  28. */
  29. ngOnInit(): void;
  30. }