@servicenow/sdk - v4.4.1
    Preparing search index...
    ExtractOutputVarTypes: T extends Record<string, Column>
        ? { [K in keyof T]: T[K] extends Column ? Typed<T[K]> : never }
        : {}

    Helper type to extract output variable names and types from output_variables object Converts { outputVariable_1: StringColumn({...}), outputVariable_2: IntegerColumn({...}) } to { outputVariable_1: string, outputVariable_2: number }

    Type Parameters

    • T