UNPKG

@snowplow/snowtype-core

Version:

A code generator for faster and type-safe Snowplow tracking code

20 lines (19 loc) 516 B
export type HiddenDsWarningSource = { source: string; }; export type HiddenDsWarning = { sources: HiddenDsWarningSource[]; }; export type OutdatedDsWarningSource = { source: string; latestVersion: string; }; export type OutdatedDsWarning = { sources: OutdatedDsWarningSource[]; }; type EventSpecificationId = string; export type EventSpecificationsInputMetadata = Record<EventSpecificationId, { outdatedDsWarnings: OutdatedDsWarning[]; hiddenDsWarnings: HiddenDsWarning[]; }>; export {};