1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-23 20:01:37 +07:00
verdaccio-ui/types/packageMeta.ts

17 lines
285 B
TypeScript
Raw Normal View History

2019-06-22 16:43:59 +07:00
export interface PackageMetaInterface {
latest: {
name: string;
dist: {
fileCount: number;
unpackedSize: number;
};
license?: Partial<LicenseInterface> | string | null;
2019-06-22 16:43:59 +07:00
};
_uplinks: {};
}
interface LicenseInterface {
type: string;
url: string;
}