@types/parse-author
Version:
TypeScript definitions for parse-author
36 lines (28 loc) • 1.09 kB
Markdown
> `npm install --save @types/parse-author`
This package contains type definitions for parse-author (https://github.com/jonschlinkert/parse-author).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-author.
````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;
}
}
````
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: none
These definitions were written by [Remco Haszing](https://github.com/remcohaszing).