projecte_ionic/node_modules/@angular-eslint/template-parser/dist/convert-source-span-to-loc.d.ts
2022-02-09 18:30:03 +01:00

7 lines
504 B
TypeScript
Executable file

import type { ParseSourceSpan } from '@angular/compiler';
import type { TSESLint, TSESTree } from '@typescript-eslint/experimental-utils';
declare type Context<TMessageIds extends string> = TSESLint.RuleContext<TMessageIds, [
]>;
export declare function convertNodeSourceSpanToLoc(sourceSpan: ParseSourceSpan): TSESTree.SourceLocation;
export declare function convertElementSourceSpanToLoc<TMessageIds extends string>(context: Context<TMessageIds>, node: any): TSESTree.SourceLocation;
export {};