mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
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`
24 lines
371 B
JavaScript
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";
|
|
}
|
|
}
|