UNPKG

use-mitre-attack

Version:

Simple representation of MITRE ATT&CK data

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