Documentation for a newer release is available.
View Latest
Esta página no está disponible actualmente en Español. Si lo necesita, póngase en contacto con el servicio de asistencia de Icon (correo electrónico)
@iconsolutions/metrics
Getting Started
To begin using the library simply run npm i @iconsolutions/metrics in whatever angular app you need to use the library in.
You will need to add the following to the app routing module:
{
path: 'metrics',
canActivate: [roleGuard],
data: { roles: ['ROLE_METRICS'] },
loadChildren: () => import('@iconsolutions/metrics').then((m) => m.MetricsModule)
}