import type { IBaseRouteConfig } from './IBaseRouteConfig'; /** * A RouteConfig that matches against a `path` string. `path` must be a * [`URLPattern` compatible pathname pattern](https://developer.mozilla.org/en-US/docs/Web/API/URLPattern/pathname). */ export interface IPathRouteConfig extends IBaseRouteConfig { /** * The path pattern to match against. */ path: string; } //# sourceMappingURL=IPathRouteConfig.d.ts.map