(records:any[])
| 198 | } |
| 199 | |
| 200 | sendEvent(records:any[]) { |
| 201 | if(!records || !records.length) return; |
| 202 | let eavs = []; |
| 203 | for(let record of records) { |
| 204 | eavs.push.apply(eavs, recordToEAVs(record)); |
| 205 | } |
| 206 | this.send({type: "event", insert: eavs}) |
| 207 | } |
| 208 | |
| 209 | injectNotice(type:string, message:string) { |
| 210 | if(this.ide) { |
no test coverage detected