MCPcopy Index your code
hub / github.com/NativeScript/firebase / fromNative

Method fromNative

packages/firebase-database/index.ios.ts:191–198  ·  view source on GitHub ↗
(query: FIRDatabaseQuery)

Source from the content-addressed store, hash-verified

189 _native: FIRDatabaseQuery;
190
191 static fromNative(query: FIRDatabaseQuery) {
192 if (query instanceof FIRDatabaseQuery) {
193 const q = new Query();
194 q._native = query;
195 return q;
196 }
197 return null;
198 }
199
200 get native() {
201 return this._native;

Callers 15

cancelMethod · 0.45
removeMethod · 0.45
setMethod · 0.45
setWithPriorityMethod · 0.45
updateMethod · 0.45
refMethod · 0.45
endAtMethod · 0.45
equalToMethod · 0.45
limitToFirstMethod · 0.45
limitToLastMethod · 0.45
onMethod · 0.45
onceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected