Skip to content

Commit

Permalink
fix(shared): 🐛 readds Transition
Browse files Browse the repository at this point in the history
readds Transition.ts that somehow got lost. Problem wasn't noticed until clean build because old build output still worked.
  • Loading branch information
aljoshakoecher committed Jul 14, 2023
1 parent 9318d81 commit ec09b9b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions shared/src/models/state-machine/Transition.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { RdfElement } from "../RdfElement";

export class Transition extends RdfElement {
constructor(iri: string) {
super(iri);
}
}

0 comments on commit ec09b9b

Please sign in to comment.