2022-08-17 02:29: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 21:55:55 -04:00
|
|
|
getValue<T>(): T;
|
2022-08-17 02:29:54 -04:00
|
|
|
getTimestamp(): Date;
|
|
|
|
getType(): ContextVariableType;
|
|
|
|
}
|