| 103 | } |
| 104 | |
| 105 | export declare class Task implements ITask { |
| 106 | readonly native; |
| 107 | readonly android; |
| 108 | readonly ios; |
| 109 | readonly snapshot: TaskSnapshot; |
| 110 | |
| 111 | cancel(): boolean; |
| 112 | |
| 113 | on(event: TaskEvent, nextOrObserver?: TaskSnapshotObserver | ((a: TaskSnapshot) => any), error?: (a: FirebaseError) => any, complete?: () => void); |
| 114 | |
| 115 | pause(): boolean; |
| 116 | |
| 117 | resume(): boolean; |
| 118 | } |
| 119 | |
| 120 | export declare class ListResult implements IListResult { |
| 121 | readonly native; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…