1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-12 22:41:37 +07:00
verdaccio-ui/src/components/Package/types.js

21 lines
277 B
JavaScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
/**
* @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;
}