UNPKG

@golemio/pid

Version:
11 lines (10 loc) 416 B
import { ICommonRunsMessageProperties } from "../../interfaces/CommonRunsMessageInterfaces"; export interface ICommonRunIdentifiers { runId: string; routeId: string; runNumber: string; } export interface ICommonRunHelper { getRunIdentifiers(properties: ICommonRunsMessageProperties, msgTimestamp: string): ICommonRunIdentifiers | null; parseDateFromRunInput(utcTimestamp: string): Date | null; }