eyes-of-a-trader/types/context/ContextVariable.d.ts

11 lines
302 B
TypeScript
Raw Normal View History

2023-01-15 09:44:31 +11:00
import { ContextVariableType } from "./ContextVariableType";
export declare class ContextVariable {
private value;
private timestamp;
private type;
constructor(value: any, type: ContextVariableType);
getValue<T>(): T;
getTimestamp(): Date;
getType(): ContextVariableType;
}