UNPKG
use-mitre-attack
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
Simple representation of MITRE ATT&CK data
github.com/logzio/useMitreAttack
logzio/useMitreAttack
use-mitre-attack
/
lib
/
esm
/
hooks
/
useMitreTags.d.ts
8 lines
(7 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Tactic
,
TacticId
,
Technique
,
TechniqueId
}
from
'./useMitreTags.types'
;
export
declare
const
useMitreTags
:
() =>
{
getTactics
:
(
tacticIds
?:
TacticId
[]
) =>
Tactic
[];
getTechniques
:
(
techniqueIds
?:
TechniqueId
[]
) =>
Technique
[];
isLoading
:
boolean
;
error
:
null
; };