* Compose paste event with passed type and detail * * @param {string} type - event type * @param {PasteEventDetail} detail - event detail
(type: string, detail: PasteEventDetail)
| 998 | * @param {PasteEventDetail} detail - event detail |
| 999 | */ |
| 1000 | private composePasteEvent(type: string, detail: PasteEventDetail): PasteEvent { |
| 1001 | return new CustomEvent(type, { |
| 1002 | detail, |
| 1003 | }) as PasteEvent; |
| 1004 | } |
| 1005 | } |
| 1006 |
no outgoing calls
no test coverage detected