/** * 跨线程通信各事务的发送数据类型声明 */ export interface WorkerAbilityTestPayload { CommunicationTest: number; } /** * 跨线程通信各事务的响应数据类型声明 */ export interface WorkerAbilityTestReponse { CommunicationTest: number; }