UNPKG

@mitre-attack/attack-data-model

Version:

A TypeScript API for the MITRE ATT&CK data model

11 lines (8 loc) 572 B
import { z } from 'zod/v4'; declare const stixTimestampSchema: z.ZodISODateTime; type StixTimestamp = z.infer<typeof stixTimestampSchema>; declare const stixCreatedTimestampSchema: z.ZodISODateTime; type StixCreatedTimestamp = z.infer<typeof stixCreatedTimestampSchema>; declare const stixModifiedTimestampSchema: z.ZodISODateTime; type StixModifiedTimestamp = z.infer<typeof stixModifiedTimestampSchema>; export { type StixCreatedTimestamp, type StixModifiedTimestamp, type StixTimestamp, stixCreatedTimestampSchema, stixModifiedTimestampSchema, stixTimestampSchema };