1.9.0 • Published 5 years ago

@ukho/cdp-metadata v1.9.0

Weekly downloads
-
License
-
Repository
-
Last release
5 years ago

@ukho/cdp-metadata

This project provides an @ukho/cdp-metadata implementation including @ngrx/store feature for metadata providing actions, reducers, effects, and selectors

Usage

Import the NgModule from this library, and call the forRoot() method in the imports of your NgModule where you want to provide the cdp-metadata implementation.

For example:

import { MintMetadataModule } from '@ukho/cdp-metadata';

...

@NgModule({
  imports: [
    ...
    MintMetadataModule.forRoot(),
  ],
  ...
})
export class AppModule {}