(config: {
type?: ServiceType;
topics?: ServiceTopics;
})
| 708 | } |
| 709 | |
| 710 | export function getServiceQueueTopics(config: { |
| 711 | type?: ServiceType; |
| 712 | topics?: ServiceTopics; |
| 713 | }): string[] { |
| 714 | return getServiceQueueTopicConfigs(config).map(topic => topic.topic); |
| 715 | } |
| 716 | |
| 717 | export function isQueueTriggeredService(service: { |
| 718 | type?: ServiceType; |
no test coverage detected