Would it be preferable to use import comments or ES6 links when loading Typescript definition files (1.6 above)?
import {describe, it, expect, jasmine} from './jasmine'
or
import * as jasmine from './jasmine'
vs.
///<reference path="jasmine.d.ts"/>
source
share