npm.io
2.0.3 • Published 2 years ago

@types/parse-author

Licence
MIT
Version
2.0.3
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
51.4K

Installation

npm install --save @types/parse-author

Summary

This package contains type definitions for parse-author (https://github.com/jonschlinkert/parse-author).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-author.

index.d.ts

/**
 * Parse a string into an object with `name`, `email` and `url` properties following npm conventions.
 *
 * Useful for the `authors` property in package.json or for parsing an AUTHORS file into an array of authors objects.
 */
declare function parse(author: string): parse.Author;

export = parse;

declare namespace parse {
    interface Author {
        name?: string | undefined;
        email?: string | undefined;
        url?: string | undefined;
    }
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 0939 GMT
  • Dependencies: none

Credits

These definitions were written by Remco Haszing.