agentdev 0.1.3 → 0.1.5
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/cli/server.js
CHANGED
package/dist/cli/viewer.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2729,6 +2729,11 @@ declare class ViewerWorker {
|
|
|
2729
2729
|
* 映射到: node_modules/agentdev/dist/features/shell/templates/bash.render.js
|
|
2730
2730
|
*/
|
|
2731
2731
|
handleNpmFeatureTemplate(req: IncomingMessage, res: ServerResponse, url: string): void;
|
|
2732
|
+
/**
|
|
2733
|
+
* 处理静态资源文件(chunk、js、css 等)
|
|
2734
|
+
* 支持 agentdev npm 包中的共享模块
|
|
2735
|
+
*/
|
|
2736
|
+
handleStaticAsset(req: IncomingMessage, res: ServerResponse, url: string): void;
|
|
2732
2737
|
private getHtml;
|
|
2733
2738
|
}
|
|
2734
2739
|
|
package/dist/index.js
CHANGED