@mitre-attack/attack-data-model
Version:
A TypeScript API for the MITRE ATT&CK data model
9 lines (7 loc) • 305 B
text/typescript
/**
* Fetches the list of ATT&CK versions from the MITRE ATT&CK STIX data GitHub repository.
* @returns A promise that resolves to an array of version strings.
* @throws An error if the HTTP request fails.
*/
declare function fetchAttackVersions(): Promise<string[]>;
export { fetchAttackVersions };