I have a PR in with DefinitelyTyped, but this change should allow CI to pass while that goes through the process.
5 lines
135 B
TypeScript
5 lines
135 B
TypeScript
declare module 'spdx-satisfies' {
|
|
function spdxSatisfies(candidate: string, allowList: string[]): boolean
|
|
export = spdxSatisfies
|
|
}
|