UNPKG
codeowners-api
Version:
latest (2.0.0)
2.0.0
1.1.4
1.1.3
1.1.1
1.1.0
1.0.0
Simple module to interact with github codeowners
github.com/code-owners/codeowners-api
codeowners-api
/
lib
/
utils
/
hasMatch.d.ts
4 lines
(3 loc)
•
163 B
TypeScript
View Raw
1
2
3
4
import
{
MappedData
}
from
'../types'
;
declare
const
hasMatch
:
(
mappedFile
:
MappedData
[],
codeOwners
:
string
[],
path
:
string
) =>
boolean
;
export
default
hasMatch;