mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:49:30 +08:00
8 lines
395 B
Text
8 lines
395 B
Text
import { TemplateNode } from '../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[];
|