2024-08-05 10:45:19 +00:00
|
|
|
import { ContextVariableType } from "@spt/context/ContextVariableType";
|
2023-06-11 15:10:34 +10:00
|
|
|
export declare class ContextVariable {
|
|
|
|
private value;
|
|
|
|
private timestamp;
|
|
|
|
private type;
|
|
|
|
constructor(value: any, type: ContextVariableType);
|
|
|
|
getValue<T>(): T;
|
|
|
|
getTimestamp(): Date;
|
|
|
|
getType(): ContextVariableType;
|
|
|
|
}
|