| 24 | const maxInteger = Number.MAX_SAFE_INTEGER; |
| 25 | |
| 26 | export class CustomEventPostMessage implements PostMessage { |
| 27 | constructor(private send: CustomEventMessage) {} |
| 28 | |
| 29 | postMessage<T = any>(message: T): void { |
| 30 | this.send.nativeSend(message); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // 使用CustomEvent来进行通讯, 可以在content与inject中传递一些dom对象 |
| 35 | export class CustomEventMessage implements Message { |
nothing calls this directly
no outgoing calls
no test coverage detected