summaryrefslogtreecommitdiffstats
path: root/llparse-builder/src/code/store.ts
blob: 84abfef184a68a1f192405744ab65bede76a535c (plain)
1
2
3
4
5
6
7
import { Field } from './field';

export class Store extends Field {
  constructor(field: string) {
    super('value', 'store', field);
  }
}