Interface DirectiveNodeOptions

interface DirectiveNodeOptions {
    inputs?: string[];
    outputs?: string[];
    successors?: string[];
}

Properties

inputs?: string[]

list of inputs view name

outputs?: string[]

list of outputs view name

successors?: string[]

successors block/scope for a directive

ex: [@if/@else] & [@for/@empty]