| 4 | export { EventType }; |
| 5 | |
| 6 | export declare class OnDisconnect implements IOnDisconnect { |
| 7 | readonly native: any; |
| 8 | readonly android: any; |
| 9 | readonly ios: any; |
| 10 | |
| 11 | cancel(onComplete?: (error: FirebaseError) => void): Promise<void>; |
| 12 | |
| 13 | remove(onComplete?: (error: FirebaseError) => void): Promise<void>; |
| 14 | |
| 15 | set(value: any, onComplete?: (error: FirebaseError) => void): Promise<void>; |
| 16 | |
| 17 | setWithPriority(value: any, priority: string | number, onComplete?: (error: FirebaseError) => void): Promise<void>; |
| 18 | |
| 19 | update(values: { [key: string]: any }, onComplete?: (error: FirebaseError) => void): Promise<void>; |
| 20 | } |
| 21 | |
| 22 | export declare class Query implements IQuery { |
| 23 | readonly native: any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…