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

11 lines
301 B
TypeScript
Raw Normal View History

2022-07-30 00:35:54 -04:00
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;
}