ScavXpCounts/types/context/ContextVariable.d.ts

11 lines
313 B
TypeScript
Raw Normal View History

2024-11-12 11:51:30 -07:00
import { ContextVariableType } from "@spt/context/ContextVariableType";
2023-08-17 19:49:16 -06:00
export declare class ContextVariable {
private value;
private timestamp;
private type;
constructor(value: any, type: ContextVariableType);
getValue<T>(): T;
getTimestamp(): Date;
getType(): ContextVariableType;
}