spdx-license-list
Version:
List of SPDX licenses
15 lines (11 loc) • 301 B
TypeScript
/**
Set of the identifiers of [SPDX licenses](https://spdx.org/licenses/).
@example
```
import * as spdxSimple from 'spdx-license-list/simple';
console.log(spdxSimple);
//=> Set {'0BSD', 'AAL', …}
```
*/
declare const spdxLicenseListSimple: Readonly<Set<string>>;
export = spdxLicenseListSimple;