@zk-tech/rrt-bridge 0.0.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/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # devtools-bridge
2
+
3
+ ## Get Started
4
+
5
+ 按开发环境的要求,运行和调试项目
6
+
7
+ 运行和调试组件
8
+
9
+ ```
10
+ pnpm run dev
11
+ ```
12
+
13
+ 按照社区规范和最佳实践,生成构建产物
14
+
15
+ ```
16
+ pnpm run build
17
+ ```
18
+
19
+ 继续创建更多项目要素
20
+
21
+ ```
22
+ pnpm run new
23
+ ```
24
+
@@ -0,0 +1,3 @@
1
+ import { BaseChannelOptions, MessageHost, MessagePreset } from './types';
2
+ export declare const bridgeEventMap: Record<MessagePreset, string>;
3
+ export declare const getBridgeChannel: (preset: MessagePreset, host: MessageHost) => BaseChannelOptions;