Interface ExecutionContext

interface ExecutionContext {
    inputs?: NodeValue[];
    outputs?: NodeValue[];
    particle?: IParticle;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

inputs?: NodeValue[]
outputs?: NodeValue[]
particle?: IParticle