import {Traversal} from './traversal'; export class Action extends Traversal { static type() { return 'action'; } toJSON() { return { ...super.toJSON(), type: 'action', }; } }