declare enum ReadingContext {
    InterruptionBegin = "Interruption.Begin",
    InterruptionEnd = "Interruption.End",
    SampleClock = "Sample.Clock",
    SamplePeriodic = "Sample.Periodic",
    TransactionBegin = "Transaction.Begin",
    TransactionEnd = "Transaction.End",
    Trigger = "Trigger",
    Other = "Other"
}
export default ReadingContext;
