-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from dalenguyen/dev
Added support for nested geo #47
- Loading branch information
Showing
18 changed files
with
350 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,5 @@ typings/ | |
.env | ||
|
||
# test folder | ||
test/serviceAccountKey.json | ||
test/serviceAccountKey.json | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export interface IImportOptions { | ||
dates?: string[]; | ||
geos?: string[]; | ||
refs?: string[]; | ||
} | ||
/** | ||
* Convert time array in a Date object | ||
* @param firebaseTimestamp | ||
*/ | ||
export declare const makeTime: (firebaseTimestamp: { | ||
_seconds: number; | ||
_nanoseconds: number; | ||
}) => Date; | ||
/** | ||
* Traverse given data, until there is no sub node anymore | ||
* Executes the callback function for every sub node found | ||
* @param data | ||
* @param callback | ||
*/ | ||
export declare const traverseObjects: (data: any, callback: Function) => void; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.