We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e4113 commit 035a2faCopy full SHA for 035a2fa
README.md
@@ -97,6 +97,7 @@ import { Substitute, Arg } from '@fluffy-spoon/substitute';
97
class RealCalculator implements Calculator {
98
add(a: number, b: number) => a + b;
99
subtract(a: number, b: number) => a - b;
100
+ divide(a: number, b: number) => a / b;
101
}
102
103
var realCalculator = new RealCalculator();
0 commit comments