1.0.1 • Published 5 years ago

@strong-roots-capital/branded-record v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

branded-record Build status npm version

Interface for Record paired with RecordContext

Install

npm install @strong-roots-capital/branded-record

Use

import BrandedRecord from '@strong-roots-capital/branded-record'

The BrandedRecord interface is defined as

/**
 * A time-series Record associated with the context of its origin.
 */
interface BrandedRecord {
    /**
     * An atomic unit of time-series data.
     */
    record: Record
    /**
     * Context of `record`
     */
    context: RecordContext
}

Related