@golemio/pid
Version:
Golemio PID Module
11 lines (10 loc) • 416 B
TypeScript
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;
}