frontend/.pnpm-store/v3/files/26/dc316f7f78ba8a1d0a350767c27e0afe55e7a249b66fd3d36774068683d602ce8f79a37f68773a61a9deb8f6e4cc739ff303f0175520b786eb2072a7718d6d

11 lines
523 B
Plaintext

import { TemplateNode } from '../interfaces';
import { INode } from '../compile/nodes/interfaces';
export declare function extract_svelte_ignore(text: string): string[];
export declare function extract_svelte_ignore_from_comments<Node extends {
leadingComments?: Array<{
value: string;
}>;
}>(node: Node): string[];
export declare function extract_ignores_above_position(position: number, template_nodes: TemplateNode[]): string[];
export declare function extract_ignores_above_node(node: INode): string[];