Valens-AIO/types/context/ApplicationContext.d.ts

10 lines
399 B
TypeScript
Raw Normal View History

2022-07-30 00:35:54 -04:00
import { ContextVariable } from "./ContextVariable";
import { ContextVariableType } from "./ContextVariableType";
export declare class ApplicationContext {
private variables;
private static holderMaxSize;
getLatestValue(type: ContextVariableType): ContextVariable;
getValues(type: ContextVariableType): ContextVariable[];
addValue(type: ContextVariableType, value: any): void;
}