@inworld/web-core
Version:
13 lines (12 loc) • 432 B
TypeScript
import { EmotionEventStrength } from '../../../../proto/ai/inworld/packets/packets.pb.js';
export declare enum EmotionStrengthCode {
UNSPECIFIED = "UNSPECIFIED",
WEAK = "WEAK",
STRONG = "STRONG",
NORMAL = "NORMAL"
}
export declare class EmotionStrength {
readonly code: EmotionStrengthCode;
constructor(strength: EmotionStrengthCode);
static fromProto(code: EmotionEventStrength): EmotionStrengthCode;
}