@inworld/web-core
Version:
13 lines (12 loc) • 533 B
TypeScript
import { EmotionEvent as ProtoEmotionEvent } from '../../../../proto/ai/inworld/packets/packets.pb.js';
import { EmotionBehavior } from './emotion_behavior.entity.js';
import { EmotionStrength } from './emotion_strength.entity.js';
export declare class EmotionEvent {
readonly behavior: EmotionBehavior;
readonly strength: EmotionStrength;
constructor({ behavior, strength, }: {
behavior: EmotionBehavior;
strength: EmotionStrength;
});
static fromProto(proto: ProtoEmotionEvent): EmotionEvent;
}