UNPKG

@lcap/nasl

Version:

NetEase Application Specific Language

22 lines 632 B
import { ModuleGraphData } from '@lcap/nasl-language-server-core'; export declare enum IncrementalErrorCode { /** 循环引用模块 */ CircularModule = 100, /** 运行时错误 */ Runtime = 200, /** 未知错误 */ Unknown = 999 } export interface IncrementalAnnotationResult { /** 标注数据 */ annotationData: object; /** 模块图数据 */ moduleGraph: ModuleGraphData; /** 更新模块 */ updatedModules: string[]; /** 是否全量更新 */ isFull: boolean; /** 是否跳过前端生成 */ isSkipFrontendGenerator: boolean; } //# sourceMappingURL=types.d.ts.map