Update type definition for spdx-satisfies

I have a PR in with DefinitelyTyped, but this change should allow CI
to pass while that goes through the process.
This commit is contained in:
Kevin Dangoor
2025-05-06 11:02:54 -04:00
parent 3a2b68706a
commit 2013ccccfe
3 changed files with 4 additions and 8 deletions

4
src/spdx-satisfies.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module 'spdx-satisfies' {
function spdxSatisfies(candidate: string, allowList: string[]): boolean
export = spdxSatisfies
}