11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
import { ContextVariableType } from "@spt-aki/context/ContextVariableType";
|
|
export declare class ContextVariable {
|
|
private value;
|
|
private timestamp;
|
|
private type;
|
|
constructor(value: any, type: ContextVariableType);
|
|
getValue<T>(): T;
|
|
getTimestamp(): Date;
|
|
getType(): ContextVariableType;
|
|
}
|