Reviewed-on: #1 Co-authored-by: Platinum <platinumgamer@hotmail.com> Co-committed-by: Platinum <platinumgamer@hotmail.com>
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
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;
|
|
}
|