Installation
npm install --save @types/gravatar
Summary
This package contains type definitions for gravatar (https://github.com/emerleite/node-gravatar).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gravatar.
export type Protocol = false | "http" | true | "https";
export interface Options {
cdn?: string | undefined;
d?: string | undefined;
default?: string | undefined;
f?: string | undefined;
forcedefault?: string | undefined;
format?: string | undefined;
protocol?: Protocol | undefined;
r?: string | undefined;
rating?: string | undefined;
s?: string | undefined;
size?: string | undefined;
}
export function url(email: string, options?: Options, protocol?: boolean): string;
export function profile_url(email: string, options?: Options, protocol?: boolean): string;
Additional Details
- Last updated: Tue, 07 Nov 2023 03:09:37 GMT
- Dependencies: none
Credits
These definitions were written by Denis Sokolov, and Piotr Błażejewicz.