| 92 | } |
| 93 | |
| 94 | export declare class DataSnapshot implements IDataSnapshot { |
| 95 | readonly native: any; |
| 96 | readonly android: any; |
| 97 | readonly ios: any; |
| 98 | |
| 99 | readonly key: string; |
| 100 | readonly ref: Reference; |
| 101 | |
| 102 | child(path: string): DataSnapshot; |
| 103 | |
| 104 | exists(): boolean; |
| 105 | |
| 106 | exportVal(); |
| 107 | |
| 108 | forEach(action: (child: DataSnapshot) => true): boolean; |
| 109 | |
| 110 | getPriority(): string | number; |
| 111 | |
| 112 | hasChild(path: string): boolean; |
| 113 | |
| 114 | hasChildren(): boolean; |
| 115 | |
| 116 | numChildren(): number; |
| 117 | |
| 118 | val(); |
| 119 | } |
| 120 | |
| 121 | export declare class Database implements IDatabase { |
| 122 | readonly native: any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…