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);
|
2022-09-11 20:07:37 -04:00
|
|
|
getValue<T>(): T;
|
2022-07-30 00:35:54 -04:00
|
|
|
getTimestamp(): Date;
|
|
|
|
getType(): ContextVariableType;
|
|
|
|
}
|