aboutsummaryrefslogtreecommitdiff
path: root/src/modules/finance
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/finance')
-rw-r--r--src/modules/finance/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/finance/index.ts b/src/modules/finance/index.ts
index 87700c86..d1580603 100644
--- a/src/modules/finance/index.ts
+++ b/src/modules/finance/index.ts
@@ -5,10 +5,10 @@ import iban from './iban';
/**
* Module to generate finance related entries.
*/
-export class Finance {
+export class FinanceModule {
constructor(private readonly faker: Faker) {
// Bind `this` so namespaced is working correctly
- for (const name of Object.getOwnPropertyNames(Finance.prototype)) {
+ for (const name of Object.getOwnPropertyNames(FinanceModule.prototype)) {
if (name === 'constructor' || typeof this[name] !== 'function') {
continue;
}