| 5 | export type SourceParser = "classical" | "clash-yaml" | "domain-list-community"; |
| 6 | |
| 7 | export interface ParseSourceOptions { |
| 8 | sourceUrl?: string; |
| 9 | fetchText?: (url: string) => Promise<string>; |
| 10 | followIncludes?: boolean; |
| 11 | } |
| 12 | |
| 13 | export async function parseSourceRules( |
| 14 | text: string, |
nothing calls this directly
no outgoing calls
no test coverage detected