1 | export interface Header {
|
2 | label: Label;
|
3 | project: Project[];
|
4 | authors: Author[];
|
5 | repository: Repository;
|
6 | }
|
7 | export interface Label {
|
8 | name: string;
|
9 | version: string;
|
10 | }
|
11 | export interface Project {
|
12 | url: string;
|
13 | }
|
14 | export interface Person {
|
15 | name: string;
|
16 | url: string;
|
17 | }
|
18 | export interface Author extends Person {
|
19 | }
|
20 | export interface Repository {
|
21 | url: string;
|
22 | }
|