UNPKG

@mitre-attack/attack-data-model

Version:

A TypeScript API for the MITRE ATT&CK data model

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