elearning/Frontend-Learner/node_modules/@vercel/nft/out/analyze.d.ts

9 lines
263 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { Job } from './node-file-trace';
export interface AnalyzeResult {
assets: Set<string>;
deps: Set<string>;
imports: Set<string>;
isESM: boolean;
}
export default function analyze(id: string, code: string, job: Job): Promise<AnalyzeResult>;