UNPKG

776 BTypeScriptView Raw
1import { Config } from '../../config/config';
2import { Refresher } from './refresher';
3/**
4 * @hidden
5 */
6export 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}