Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/@vercel/nft/out/analyze.d.ts
2025-09-18 19:01:22 +07:00

9 lines
263 B
TypeScript

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>;