Currently attempting to incorporate chai into my typescript project.
The javascript example for Chai is as follows:
var should = require('chai').should();
I have downloaded the type definition using the command:
tsd install chai
After referencing the file, I attempted to import it like so:
/// <reference path='../typings/chai/chai.d.ts' />
import should = require('chai').should();
However, upon doing this, I received the following error message:
error TS1005: ';' expected
Any suggestions on how to resolve this issue?