diff options
author | Hannah <hannah_chow@brown.edu> | 2019-02-07 15:50:23 -0500 |
---|---|---|
committer | Hannah <hannah_chow@brown.edu> | 2019-02-07 15:50:23 -0500 |
commit | 090093a50397ddc2a8fc2c50f5097f4a4ea8a74c (patch) | |
tree | 32ed9f841109c3607ee70bc99ee4a6c9d5d1c06e /src/fields/Document.ts | |
parent | 5b55e1b6081393989ca35d2964da9604c2a93802 (diff) |
started adding editable schema cells
Diffstat (limited to 'src/fields/Document.ts')
-rw-r--r-- | src/fields/Document.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fields/Document.ts b/src/fields/Document.ts index 3d74c047c..53138eda9 100644 --- a/src/fields/Document.ts +++ b/src/fields/Document.ts @@ -141,6 +141,10 @@ export class Document extends Field { return delegate; } + ToScriptString(): string { + return ""; + } + TrySetValue(value: any): boolean { throw new Error("Method not implemented."); } |