(limit: number)
| 186 | return Query.fromNative(this.native.limitToFirst(limit)); |
| 187 | } |
| 188 | limitToLast(limit: number): Query { |
| 189 | return Query.fromNative(this.native.limitToLast(limit)); |
| 190 | } |
| 191 | off(eventType?: EventType, callback?: (a: DataSnapshot, b: string) => void, context?: Record<string, any>): void { |
| 192 | const handle = callback?.['__fbHandle']; |
| 193 | const event = callback?.['__fbEventType']; |
nothing calls this directly
no test coverage detected