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/Field.ts | |
parent | 5b55e1b6081393989ca35d2964da9604c2a93802 (diff) |
started adding editable schema cells
Diffstat (limited to 'src/fields/Field.ts')
-rw-r--r-- | src/fields/Field.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fields/Field.ts b/src/fields/Field.ts index 9880116c0..20d8bf5ed 100644 --- a/src/fields/Field.ts +++ b/src/fields/Field.ts @@ -47,6 +47,8 @@ export abstract class Field { return this.id === other.id; } + abstract ToScriptString(): string; + abstract TrySetValue(value: any): boolean; abstract GetValue(): any; |