Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | import type Publisher from "./Publisher";
type Package = {
authority: string | null;
contact: string;
"default-track": string;
description: string;
id: string;
links: {
contact: Array<string>;
website: Array<string>;
};
media: Array<{
type: string;
url: string;
}>;
name: string;
private: boolean;
publisher: Publisher;
status: string;
store: string;
summary: string;
title: string;
"track-guardrails": Array<string>;
tracks: Array<{
"automatic-phasing-percentage": string | null;
"created-at": string;
name: string;
"version-pattern": string | null;
}>;
type: string;
unlisted?: boolean;
website: string | null;
};
export default Package;
|