uneeq-js 3.0.16-preview.60 → 3.0.16-preview.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type DataChannelActionType } from "./DataChannelActionType";
|
|
2
2
|
import { type CameraAnchorData } from "./messages/CameraAnchor";
|
|
3
3
|
import { type ChatPromptData } from "./messages/ChatPrompt";
|
|
4
|
-
import { type SpeakData } from "./messages/
|
|
4
|
+
import { type SpeakData } from "./messages/Speak";
|
|
5
5
|
import { type UserSpeakingData } from "./messages/UserSpeaking";
|
|
6
6
|
export interface DataChannelAction {
|
|
7
7
|
action: DataChannelActionType;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type DataChannelAction } from "../DataChannelAction";
|
|
2
|
+
import { type DataChannelMessage } from "../DataChannelMessage";
|
|
3
|
+
export interface SpeakData {
|
|
4
|
+
prompt: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class Speak implements DataChannelMessage {
|
|
7
|
+
private readonly prompt;
|
|
8
|
+
constructor(prompt: string);
|
|
9
|
+
toJSON(): DataChannelAction;
|
|
10
|
+
}
|