UNPKG

209 BPlain TextView Raw
1/**
2 * `Person` represents a person associated to a package.
3 */
4export interface Person {
5 readonly name?: string;
6 readonly username?: string;
7 readonly email?: string;
8 readonly url?: string;
9}