1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-12 06:05:43 +07:00

Refactor: Updated developers component structure (#360)

This commit is contained in:
Priscila Oliveira
2019-12-17 22:57:53 -03:00
committed by GitHub
parent eef2913dd5
commit 3a9f66c023
9 changed files with 699 additions and 713 deletions

View File

@@ -24,9 +24,16 @@ export interface PackageMetaInterface {
type?: string;
url?: string;
};
maintainers?: Array<Developer>;
contributors?: Array<Developer>;
};
_uplinks: {};
}
export interface Developer {
name: string;
email: string;
avatar: string;
}
interface LicenseInterface {
type: string;