mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
17 lines
285 B
TypeScript
17 lines
285 B
TypeScript
export interface PackageMetaInterface {
|
|
latest: {
|
|
name: string;
|
|
dist: {
|
|
fileCount: number;
|
|
unpackedSize: number;
|
|
};
|
|
license?: Partial<LicenseInterface> | string | null;
|
|
};
|
|
_uplinks: {};
|
|
}
|
|
|
|
interface LicenseInterface {
|
|
type: string;
|
|
url: string;
|
|
}
|