UNPKG

browser-extension-url-match

Version:

Browser extension URL pattern matching

11 lines (10 loc) 335 B
import { PatternSegments } from './types'; type DummyUrlOptions = Partial<{ strict: boolean; defaultScheme: string; subdomain: string; pathAndQueryReplacer: string; rootDomain: string; }>; export declare function getDummyUrl(patternSegments: PatternSegments, replacements?: DummyUrlOptions): URL | null; export {};