@types/js-gravatar
TypeScript icon, indicating that this package has built-in type declarations

1.1.4 • Public • Published

Installation

npm install --save @types/js-gravatar

Summary

This package contains type definitions for js-gravatar (https://github.com/chukwumaijem/js-gravatar#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-gravatar.

index.d.ts

/**
 * JS Gravatar
 * {@link https://github.com/chukwumaijem/js-gravatar#js-gravatar}
 */
declare function jsGravatar(options?: jsGravatar.Options): string;

declare namespace jsGravatar {
    interface Options {
        /**
         * The size of the image to be displayed. Should be from 1 to 2048
         */
        size?: number | undefined;
        /**
         *  What image should be used if email does not have a gravatar
         */
        defaultImage?:
            | "404"
            | "mp"
            | "identicon"
            | "monsterid"
            | "wavatar"
            | "retro"
            | "robohash"
            | "blank"
            | undefined;
        /**
         * Email address of the user to generate gravatar for
         */
        email: string;
        /**
         *  Optional: MD5 hash of the email above.
         * If email is provided, md5hash will be ignored. If neither email nor md5hash is provided, the library will throw en error
         */
        md5Hash?: string | undefined;
    }

    function buildQueryStringFromOptions(options: Options): string;
    function validateOptions(options?: Options): void;
}

export as namespace jsGravatar;

export = jsGravatar;

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Piotr Błażejewicz.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/js-gravatar

Weekly Downloads

3

Version

1.1.4

License

MIT

Unpacked Size

5.03 kB

Total Files

5

Last publish

Collaborators

  • types