10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
|
|
||
|
import sinon = require("sinon");
|
||
|
|
||
|
export = function () {
|
||
|
return {
|
||
|
mark: sinon.stub(),
|
||
|
regulate: sinon.stub()
|
||
|
};
|
||
|
};
|