UNPKG

@lcap/nasl

Version:

NetEase Application Specific Language

14 lines 413 B
import { Diagnostic } from '@lcap/nasl-types'; import { BaseNode } from '@lcap/nasl-concepts'; type Diagnostic = Diagnostic.Diagnostic; export type Node = BaseNode; export type AutoFixRule = { title?: string; isFixable: (diagnostic: Diagnostic) => { hint?: string; } | false; commitFix: (node: Node) => void; disableForBatch?: boolean; }; export {}; //# sourceMappingURL=types.d.ts.map