diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-28 01:55:22 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-28 01:55:22 -0500 |
commit | db241485f4f9dff0f43cf5e8059ccb7bd8df5b15 (patch) | |
tree | 789aa71a15151ae9c180200414b8089084a497dc /src/fields/DocumentReference.ts | |
parent | b6ae466668086bee68014a3fb0c7df75ff7df4ca (diff) |
Formatted all files
Diffstat (limited to 'src/fields/DocumentReference.ts')
-rw-r--r-- | src/fields/DocumentReference.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fields/DocumentReference.ts b/src/fields/DocumentReference.ts index 936067bd2..f8be335ef 100644 --- a/src/fields/DocumentReference.ts +++ b/src/fields/DocumentReference.ts @@ -4,7 +4,7 @@ import { Key } from "./Key"; import { DocumentUpdatedArgs } from "./FieldUpdatedArgs"; export class DocumentReference extends Field { - get Key(): Key{ + get Key(): Key { return this.key; } @@ -16,11 +16,11 @@ export class DocumentReference extends Field { super(); } - private DocFieldUpdated(args: DocumentUpdatedArgs):void{ + private DocFieldUpdated(args: DocumentUpdatedArgs): void { // this.FieldUpdated.emit(args.fieldArgs); } - Dereference() : Opt<Field> { + Dereference(): Opt<Field> { return this.document.GetField(this.key); } |