blob: fa6da41f3d433500c855757402f187a3ada902ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import * as base from "../base";
import { ActionMetrics } from "../metrics/metrics";
/** @public */
export class Action extends base.ViewModel {
constructor(actionClass, actionMetrics = new ActionMetrics()) {
super();
this.title = null;
this.artwork = null;
this.presentationStyle = [];
this.actionClass = actionClass;
this.$kind = actionClass;
this.actionMetrics = actionMetrics;
}
}
//# sourceMappingURL=base-action.js.map
|