Files
Surge_by_SukkaW/Build/lib/clash.ts
2024-10-10 22:45:22 +08:00

8 lines
285 B
TypeScript

const unsupported = Symbol('unsupported');
// https://dreamacro.github.io/clash/configuration/rules.html
export const PROCESSOR: Record<string, ((raw: string, type: string, value: string) => string) | typeof unsupported> = {
'URL-REGEX': unsupported,
'USER-AGENT': unsupported
};