UNPKG

edge-master

Version:
8 lines (7 loc) 319 B
import { IMatcher } from './types/base'; /** * pattern ex: '*foo*bar*' for maching 'XXXfooXXbarXX' */ export declare const routePattern: (pattern: string) => IMatcher; export declare const urlStartWith: (urlStartingWith: string) => IMatcher; export declare const pathStartWith: (urlStartingWith: string) => IMatcher;