This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -91,11 +91,11 @@ declare module "nativescript-plugin-firebase" {
9191
9292 export function init ( options : InitOptions ) : Promise < any > ;
9393 export function login ( options : LoginOptions ) : Promise < LoginResult > ;
94- export function createUser ( options : CreateUserOptions ) : string ;
95- export function push ( path : string , value : any ) : void ;
96- export function setValue ( path : string , value : any ) : void ;
97- export function remove ( path : string ) : void ;
98- export function query ( onValueEvent : ( data : FBData ) => void , path : string , options : QueryOptions ) : void ;
99- export function addChildEventListener ( onChildEvent : ( data : FBData ) => void , path : string ) : void ;
100- export function addValueEventListener ( onValueEvent : ( data : FBData ) => void , path : string ) : void ;
94+ export function createUser ( options : CreateUserOptions ) : Promise < any > ;
95+ export function push ( path : string , value : any ) : Promise < any > ;
96+ export function setValue ( path : string , value : any ) : Promise < any > ;
97+ export function remove ( path : string ) : Promise < any > ;
98+ export function query ( onValueEvent : ( data : FBData ) => void , path : string , options : QueryOptions ) : Promise < any > ;
99+ export function addChildEventListener ( onChildEvent : ( data : FBData ) => void , path : string ) : Promise < any > ;
100+ export function addValueEventListener ( onValueEvent : ( data : FBData ) => void , path : string ) : Promise < any > ;
101101}
You can’t perform that action at this time.
0 commit comments