Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / parser / dist / parser.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/parser/dist/parser.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/parser/dist/parser.d.ts
new file mode 100644 (file)
index 0000000..1c6cff0
--- /dev/null
@@ -0,0 +1,17 @@
+import { ParserOptions, TSESTree } from '@typescript-eslint/types';
+import { ParserServices, visitorKeys } from '@typescript-eslint/typescript-estree';
+import { analyzeScope } from './analyze-scope';
+interface ParseForESLintResult {
+    ast: TSESTree.Program & {
+        range?: [number, number];
+        tokens?: TSESTree.Token[];
+        comments?: TSESTree.Comment[];
+    };
+    services: ParserServices;
+    visitorKeys: typeof visitorKeys;
+    scopeManager: ReturnType<typeof analyzeScope>;
+}
+declare function parse(code: string, options?: ParserOptions): ParseForESLintResult['ast'];
+declare function parseForESLint(code: string, options?: ParserOptions | null): ParseForESLintResult;
+export { parse, parseForESLint, ParserOptions };
+//# sourceMappingURL=parser.d.ts.map
\ No newline at end of file