diff options
| author | Eric Cheng <[email protected]> | 2022-01-29 15:48:16 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-29 21:48:16 +0100 |
| commit | b5482df6a5083555d6ac0d87de89b0736615c727 (patch) | |
| tree | 3f7c00304b9df3326631f8cdc4211776b7f57cb1 /src/lorem.ts | |
| parent | 6820a2908e771d5563f55355c819d86b4209855b (diff) | |
| download | faker-b5482df6a5083555d6ac0d87de89b0736615c727.tar.xz faker-b5482df6a5083555d6ac0d87de89b0736615c727.zip | |
chore: add more type annotations (#358)
Diffstat (limited to 'src/lorem.ts')
| -rw-r--r-- | src/lorem.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lorem.ts b/src/lorem.ts index a078e6e0..eb1395f3 100644 --- a/src/lorem.ts +++ b/src/lorem.ts @@ -78,7 +78,7 @@ export class Lorem { * @method faker.lorem.slug * @param wordCount number of words, defaults to 3 */ - slug(wordCount?: number) { + slug(wordCount?: number): string { const words = this.faker.lorem.words(wordCount); return this.Helpers.slugify(words); } |
