@ovyerus/licenses
Version:
List of SPDX licenses with predictable placeholders
16 lines (13 loc) • 316 B
TypeScript
import { Identifiers } from './';
declare namespace fullLicenses {
export interface FullLicenseInfo {
name: string;
url: string;
osiApproved: boolean;
licenseText: string;
}
}
declare const fullLicenses: {
[key in Identifiers[number]]: fullLicenses.FullLicenseInfo;
};
export = fullLicenses;