Initial release for SPT 3.9
This commit is contained in:
10
types/context/ContextVariable.d.ts
vendored
Normal file
10
types/context/ContextVariable.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user