UNPKG

@mitre-attack/attack-data-model

Version:

A TypeScript API for the MITRE ATT&CK data model

10 lines (7 loc) 235 B
import { z } from 'zod/v4'; declare const stixSpecVersionSchema: z.ZodEnum<{ "2.0": "2.0"; 2.1: "2.1"; }>; type StixSpecVersion = z.infer<typeof stixSpecVersionSchema>; export { type StixSpecVersion, stixSpecVersionSchema };