UNPKG

@now/build-utils

Version:
8 lines (7 loc) 326 B
import { Framework } from '@vercel/frameworks'; import { DetectorFilesystem } from './detectors/filesystem'; export interface DetectFrameworkOptions { fs: DetectorFilesystem; frameworkList: Framework[]; } export declare function detectFramework({ fs, frameworkList, }: DetectFrameworkOptions): Promise<string | null>;