@mitre-attack/attack-data-model
Version:
A TypeScript API for the MITRE ATT&CK data model
11 lines (8 loc) • 661 B
text/typescript
import { z } from 'zod/v4';
declare const stixTimestampSchema: z.ZodISODateTime;
type StixTimestamp = z.infer<typeof stixTimestampSchema>;
declare const stixCreatedTimestampSchema: z.core.$ZodBranded<z.ZodISODateTime, "StixCreatedTimestamp">;
type StixCreatedTimestamp = z.infer<typeof stixCreatedTimestampSchema>;
declare const stixModifiedTimestampSchema: z.core.$ZodBranded<z.ZodISODateTime, "StixModifiedTimestamp">;
type StixModifiedTimestamp = z.infer<typeof stixModifiedTimestampSchema>;
export { type StixCreatedTimestamp, type StixModifiedTimestamp, type StixTimestamp, stixCreatedTimestampSchema, stixModifiedTimestampSchema, stixTimestampSchema };