diff options
Diffstat (limited to 'llparse-frontend/src/code/store.ts')
-rw-r--r-- | llparse-frontend/src/code/store.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llparse-frontend/src/code/store.ts b/llparse-frontend/src/code/store.ts new file mode 100644 index 0000000..c2cb9ea --- /dev/null +++ b/llparse-frontend/src/code/store.ts @@ -0,0 +1,7 @@ +import { Field } from './field'; + +export class Store extends Field { + constructor(name: string, field: string) { + super('value', `store_${field}`, name, field); + } +} |