Valens-AIO/types/context/ContextVariable.d.ts

11 lines
301 B
TypeScript

import { ContextVariableType } from "./ContextVariableType";
export declare class ContextVariable {
private value;
private timestamp;
private type;
constructor(value: any, type: ContextVariableType);
getValue(): any;
getTimestamp(): Date;
getType(): ContextVariableType;
}