declare let jasmineRequire: any; /** * Add missing types - TODO: fix @type/jasmine */ declare namespace jasmine { class Timer { constructor(); } class QueryString { constructor(opts: any); getParam(key: string): any; navigateWithNewParam(a: string, b: boolean): any; fullStringWithNewParam(k: string, v: string): string; } } /** * This customization of the default jasmin boot.js exposes an 'startJasmine' function * by which the 'main' es2015 test module can begin execution of the suite * of tests that have asynchronously loaded onto the page. * The default 'boot' expects that every test spec has loaded synchronously * before it executes. */ declare namespace littleware { namespace test { function startJasmine(): void; } }