Skip to content
Snippets Groups Projects
state-variable.ts 151 B
Newer Older
  • Learn to ignore specific revisions
  • export class StateVariable {
      id: string;
      value: string;
      constructor(id: string, value: string) {
        this.id = id;
        this.value = value;
      }
    }