1.2.4 • Published 6 months ago

@types/jabber v1.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/jabber

Summary

This package contains type definitions for jabber (https://github.com/dejavu1987/jabber#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jabber.

index.d.ts

// Type definitions for jabber 1.2
// Project: https://github.com/dejavu1987/jabber#readme
// Definitions by: owl-from-hogvarts <https://github.com/owl-from-hogvarts>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare class Jabber {
    /**
     *
     * @param themeWords Custom words that need to appear in some density
     * @param themeWordDensity appearance of themeword 1 per this number so 5 will make it approx 1 per 5 words
     * @param extraVowels additional vowel chars
     * @param extraConsonants additional consonants
     */
    constructor(themeWords?: ReadonlyArray<string>, themeWordDensity?: number, extraVowels?: string, extraConsonants?: string);
    /**
     * Create word of certain length
     */
    createWord(length: number, capitalize?: boolean, avoidThemeWords?: boolean): string;
    /**
     * Create paragraph of certain number of words
     */
    createParagraph(length: number): string;
    /**
     * Create fake full name
     */
    createFullName(salutation?: boolean): string;
    createEmail(customDomain?: string): string;
}

export = Jabber;

Additional Details

  • Last updated: Mon, 23 Aug 2021 18:31:26 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by owl-from-hogvarts.

1.2.4

6 months ago

1.2.3

6 months ago

1.2.2

7 months ago

1.2.1

8 months ago

1.2.0

3 years ago