项目文件夹

文件
2025-12-29 21:14:10 +08:00

12 行
457 B
TypeScript

/**
* @fileoverview Shared UI Composables
* @description Composables shared between multiple UI entrypoints (Sidepanel, Builder, Popup, etc.)
*
* Note: These composables are for UI-only use. Do not import them in background scripts
* as they depend on Vue and will bloat the service worker bundle.
*/
// RR V3 RPC Client
export { useRRV3Rpc } from './useRRV3Rpc';
export type { UseRRV3Rpc, UseRRV3RpcOptions, RpcRequestOptions } from './useRRV3Rpc';