UNPKG

@netlify/config

Version:
14 lines (13 loc) 444 B
import { TestOptions } from '../types/options.js'; type AvailableIntegration = { slug: string; hostSiteUrl: string; hasBuild?: boolean; }; type GetAvailableIntegrationsOpts = { testOpts: TestOptions; offline: boolean; extensionApiBaseUrl: string; }; export declare const getAvailableIntegrations: ({ testOpts, offline, extensionApiBaseUrl, }: GetAvailableIntegrationsOpts) => Promise<AvailableIntegration[]>; export {};