InsuranceTweaks/types/context/ContextVariable.d.ts

11 lines
313 B
TypeScript
Raw Normal View History

2024-07-15 09:59:30 +02:00
import { ContextVariableType } from "@spt/context/ContextVariableType";
export declare class ContextVariable {
private value;
private timestamp;
private type;
constructor(value: any, type: ContextVariableType);
getValue<T>(): T;
getTimestamp(): Date;
getType(): ContextVariableType;
}