11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { ExtendedTagElement } from './types.js';
|
|
import '../../misc/cheerio.js';
|
|
import 'domhandler';
|
|
import 'cheerio';
|
|
|
|
/**
|
|
* Get tag for error message
|
|
*/
|
|
declare function analyseTagError(element: ExtendedTagElement): string;
|
|
|
|
export { analyseTagError };
|