UNPKG

@netlify/config

Version:
18 lines (17 loc) 657 B
import { type IntegrationResponse } from '../../types/api.js'; import { type ModeOption } from '../../types/options.js'; interface AutoInstallOptions { featureFlags: any; siteId: string; accountId: string; token: string; buildDir: string; integrations: IntegrationResponse[]; offline: boolean; testOpts: any; mode: ModeOption; extensionApiBaseUrl: string; debug?: boolean; } export declare function handleAutoInstallExtensions({ featureFlags, siteId, accountId, token, buildDir, integrations, offline, testOpts, mode, extensionApiBaseUrl, debug, }: AutoInstallOptions): Promise<IntegrationResponse[]>; export {};