two-slot-extended-mags/types/context/ContextVariable.d.ts
2024-04-03 20:15:11 +11:00

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;
}