0.4.3 • Published 4 years ago

types-fbp-graph v0.4.3

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

types-fbp-graph

TypeScript type declarations for fbp-graph

Warning

While I've tried to make this as accurate as possible, errors may have been made.

If you find a discrepancy, file an issue and I'll fix it.

How To Use

Step 1 : Installation

Install into your project with npm as follows:

$ npm install types-fbp-graph

Step 2: Include typeRoots in your tsconfig.json

In your tsconfig.json file, add the following

{
    // ...
    "compilerOptions": {
        //...
        "typeRoots": [
            // Include this project
            "./node_modules/types-fbp-graph/", 

            // ...and don't forget to add:
            "./node_modules/@types/"
            // If you do forget, other @types/* dependencies won't load. 
        ]
        //...
    }
    // ...
}

...and that's it.