(options?: SendEventOptions)
| 1620 | } |
| 1621 | |
| 1622 | function sendEventOptionsProperties(options?: SendEventOptions) { |
| 1623 | return [ |
| 1624 | ...(options?.accountId ? [{ label: "Account ID", text: options.accountId }] : []), |
| 1625 | ...(options?.deliverAfter |
| 1626 | ? [{ label: "Deliver After", text: `${options.deliverAfter}s` }] |
| 1627 | : []), |
| 1628 | ...(options?.deliverAt ? [{ label: "Deliver At", text: options.deliverAt.toISOString() }] : []), |
| 1629 | ]; |
| 1630 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…