UNPKG

@inworld/web-core

Version:
11 lines (10 loc) 224 B
export class NarratedAction { constructor({ text }) { this.text = text; } static fromProto(proto) { return new NarratedAction({ text: proto.narratedAction.content, }); } }