D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
navigation
/
patch
/
Filename :
RouteParamsProvider.ts
back
Copy
// This is empty for now, as I think it's not going to be necessary. // This replaces Angular RouteParamsProvider implementation with a dummy one to keep the ball rolling import { navigationLogger } from '@grafana/runtime'; export class RouteParamsProvider { constructor() { navigationLogger('Patch angular', false, 'RouteParamsProvider'); } $get = () => { // throw new Error('TODO: Refactor $routeParams'); }; }