avocado-old/packages/behavior/item/action.js

15 lines
210 B
JavaScript
Raw Normal View History

2019-03-17 23:45:48 -05:00
import {Traversal} from './traversal';
export class Action extends Traversal {
static type() {
return 'action';
}
toJSON() {
return {
...super.toJSON(),
type: 'action',
};
}
}