discourse-ai/assets/javascripts/discourse/lib/ai-streamer/updaters/stream-updater.js
Keegan George eae7716177
DEV: Improve ai-streamer API (#851)
In preparation for applying the streaming animation elsewhere, we want to better improve the organization of folder structure and methods used in the `ai-streamer`
2024-10-22 10:55:35 -07:00

24 lines
371 B
JavaScript

/**
* Interface needed to implement for a streaming updater
*/
export default class StreamUpdater {
set streaming(value) {
throw "not implemented";
}
async setCooked() {
throw "not implemented";
}
async setRaw() {
throw "not implemented";
}
get element() {
throw "not implemented";
}
get raw() {
throw "not implemented";
}
}