import { SinonSandbox } from 'sinon'; import { Logger } from './create_logger_stub'; export { SinonStub, SinonSpy, SinonFake, SinonMock, SinonFakeTimers, SinonSandbox } from 'sinon'; /** * Create a Sinon sandbox that resets itself between each test. Also returns a goodeggs-logger stub * that is stubbed using the returned sandbox. */ export default function useSinonSandbox(): { sandbox: SinonSandbox; stubLogger: (logger: Logger) => void; }; //# sourceMappingURL=use_sinon_sandbox.d.ts.map