()
| 167 | } |
| 168 | |
| 169 | export function getIntegrations(): Integration[] { |
| 170 | return allIntegrations(); |
| 171 | } |
| 172 | |
| 173 | export function getIntegration(slug: string): Integration | undefined { |
| 174 | return allIntegrations().find((i) => i.slug === slug); |
no test coverage detected
searching dependent graphs…