currently it's a little tricky to use this package in a typescript project.
To unroll in a Typescript project one needs to:
- Install the package using npm.
- Declare the module in typings.d.ts.
declare module 'unroll'
- Import it in the spec file like
import * as unroll from 'unroll';
Ideally the second step should be avoided.