# conflux-web-core

This is a sub module of [ConfluxWeb][repo]

The ```conflux-web-core``` contains the AbstractConfluxModule. 
This should be used if someone wants to implement a new confluxWeb module. 

## Installation

```bash
npm install conflux-web-core
```

## Usage

```js
import {AbstractConfluxModule} from 'conflux-web-core';

new AbstractConfluxModule(...);
```

## Types 

All the typescript typings are placed in the types folder. 

[repo]: https://github.com/Conflux-Chain/ConfluxWeb
