repomix
Version:
A tool to pack repository contents to single file for AI consumption
10 lines (9 loc) • 397 B
TypeScript
import type { Node } from 'web-tree-sitter';
import type { ParseContext } from './BaseParseStrategy.js';
import { BaseParseStrategy } from './BaseParseStrategy.js';
export declare class CssParseStrategy extends BaseParseStrategy {
parseCapture(capture: {
node: Node;
name: string;
}, lines: string[], processedChunks: Set<string>, _context: ParseContext): string | null;
}