@univerjs/rpc
本 API 页面目前提供英文正文。代码签名与标识符不随界面语言变化。
Browser RPC layer for Univer main-thread and worker communication.
TypeScript
import type { IUniverRPCMainThreadConfig } from '@univerjs/rpc'import { UniverRPCMainThreadPlugin } from '@univerjs/rpc'const config: IUniverRPCMainThreadConfig = { workerURL: new URL('./worker.js', import.meta.url),}univer.registerPlugin(UniverRPCMainThreadPlugin, config)workerURL is required when the main-thread plugin starts. Build the following worker entry separately and point workerURL to its output.
TypeScript
import { UniverRPCWorkerThreadPlugin } from '@univerjs/rpc'univer.registerPlugin(UniverRPCWorkerThreadPlugin)IUniverRPCMainThreadConfig
TypeScript
export interface IUniverRPCMainThreadConfig { workerURL?: string | URL | Worker}IUniverRPCWorkerThreadConfig
TypeScript
export interface IUniverRPCWorkerThreadConfig {}你觉得这篇文档如何?