verdaccio-ui/src/components/Package/types.js
Priscila Oliveira e2d478d65b initial commit
2019-02-03 17:04:42 +01:00

21 lines
277 B
JavaScript

/**
* @prettier
* @flow
*/
export interface IProps {
name: string;
version: string;
time: string;
author: IAuthor;
description?: string;
keywords?: string[];
license?: string;
}
export interface IAuthor {
name: string;
avatar: string;
email: string;
}