Fix method signature

This commit is contained in:
Dénes Harmath
2014-01-14 01:18:43 +01:00
parent 2bd91a105a
commit 5e3a8a4c55
+2 -2
View File
@@ -10,7 +10,7 @@ interface IFirebaseAuthResult {
interface IFirebaseDataSnapshot {
val(): any;
child(): IFirebaseDataSnapshot;
child(childPath: string): IFirebaseDataSnapshot;
forEach(childAction: (childSnapshot: IFirebaseDataSnapshot) => boolean): boolean;
hasChild(childPath: string): boolean;
hasChildren(): boolean;
@@ -70,4 +70,4 @@ declare class Firebase implements IFirebaseQuery {
endAt(priority?: string, name?: string): IFirebaseQuery;
endAt(priority?: number, name?: string): IFirebaseQuery;
ref(): Firebase;
}
}