vrack-db
Version:
This is an In Memory database designed for storing time series (graphs).
15 lines (14 loc) • 412 B
TypeScript
import Interval, { IPeriodMapInterface } from "./Interval";
/**
* Extends the interval class to use microseconds as the MTU
*
* @see Interval
*/
export default class IntervalUs extends Interval {
/**
* Multiplier for easy calculation of the number of MTUs for a period
*/
protected static mint: number;
protected static map: IPeriodMapInterface;
protected static nowFactor: number;
}