mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-24 13:29:13 +08:00
8 lines
263 B
Text
8 lines
263 B
Text
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>;
|