import { EmbraceInstrumentationBaseArgs } from "../../EmbraceInstrumentationBase/types.js"; //#region src/instrumentations/navigation/NavigationInstrumentation/types.d.ts type NavigationInstrumentationArgs = Pick & { /** * If set to `true`, the instrumentation will remove path options from the route name. * e.g. it will convert `/order/:orderState(pending|shipped|delivered)` to `/order/:orderState`. * * *default*: true */ shouldCleanupPathOptionsFromRouteName?: boolean; }; //#endregion export { NavigationInstrumentationArgs }; //# sourceMappingURL=types.d.ts.map