clickgo 6.1.0 → 6.1.1
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.
- package/dist/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/clickgo.d.ts +6 -0
- package/dist/index.js +1 -1
- package/doc/clickgo-rag.md +402 -295
- package/package.json +1 -1
package/dist/app/demo.cga
CHANGED
|
Binary file
|
package/dist/app/task.cga
CHANGED
|
Binary file
|
package/dist/clickgo.d.ts
CHANGED
|
@@ -126,6 +126,12 @@ export declare abstract class AbstractBoot {
|
|
|
126
126
|
/** --- 环境文件加载完成的事件 --- */
|
|
127
127
|
onRuntimeFileLoaded(url: string, state: number): void | Promise<void>;
|
|
128
128
|
}
|
|
129
|
+
/** --- 显示浏览器运行环境提示 --- */
|
|
130
|
+
export declare function showBrowserWarning(text: {
|
|
131
|
+
'title': string;
|
|
132
|
+
'content': string;
|
|
133
|
+
'button': string;
|
|
134
|
+
}): void;
|
|
129
135
|
/**
|
|
130
136
|
* --- 启动 ClickGo ---
|
|
131
137
|
* @param boot 启动类
|