import * as sinon from 'sinon'; /** * Sinon Sandbox * http://sinonjs.org/docs/#sinon-sandbox * * A sandbox to house spy(), stub(), mock(), etc. that is automatically reset after each test. */ declare const sandbox: sinon.SinonSandbox; export default sandbox;