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

refactor: formatLicense to return undefined instead of null

This commit is contained in:
Griffithtp
2019-07-07 11:17:22 +01:00
parent cf1f47e86c
commit 13c7aa6d03
3 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ export interface PackageMetaInterface {
fileCount: number;
unpackedSize: number;
};
license?: Partial<LicenseInterface> | string | null;
license?: Partial<LicenseInterface> | string;
};
_uplinks: {};
}