@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface ActionStepWithMeta<I, O, AI, AO>

    Extended ActionStep that carries the two flags as type-level booleans. AI/AO are literal booleans (true/false) and are used later for conditional typing.

    interface ActionStepWithMeta<I, O, AI extends boolean, AO extends boolean> {
        allowExtendedInputs?: AI;
        allowExtendedOutputs?: AO;
        output: O;
        (id: string | ExplicitKey<string>, config: I): void;
    }

    Type Parameters

    • I
    • O
    • AI extends boolean
    • AO extends boolean

    Hierarchy (View Summary)

    • Parameters

      Returns void

    Index

    Properties

    allowExtendedInputs?: AI

    Carry compile-time flags. Optional to match typical config shapes.

    allowExtendedOutputs?: AO
    output: O