UNPKG

use-mitre-attack

Version:

Simple representation of MITRE ATT&CK data

8 lines (7 loc) 292 B
import { Tactic, TacticId, Technique, TechniqueId } from './useMitreAttack.types'; export declare const useMitreAttack: () => { getTactics: (tacticIds?: TacticId[]) => Tactic[]; getTechniques: (techniqueIds?: TechniqueId[]) => Technique[]; isLoading: boolean; error: null; };