mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
9 lines
263 B
TypeScript
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>;
|