Type Alias TwingExecutionContext

TwingExecutionContext: {
    aliases: TwingTemplateAliases;
    blocks: TwingTemplateBlockMap;
    context: TwingContext<any, any>;
    environment: TwingEnvironment;
    nodeExecutor: TwingNodeExecutor;
    outputBuffer: TwingOutputBuffer;
    sandboxed: boolean;
    sourceMapRuntime?: TwingSourceMapRuntime;
    strict: boolean;
    template: TwingTemplate;
    templateLoader: TwingTemplateLoader;
}