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

    Type Alias ResolveOutputWithTable<C, TTable>

    ResolveOutputWithTable: C extends { dependent: string }
        ? C extends Typed<infer T>
            ? T extends unknown[]
                ? TableAwareRecordWithFallback<TTable>[]
                : TableAwareRecordWithFallback<TTable>
            : TableAwareRecordWithFallback<TTable>
        : C extends Column ? OutputFieldWithDotwalk<C> : unknown

    Resolve an output field type based on the input table. If the column has a dependent property pointing to a table input, and we know the table, provide table-aware typing with dotwalk support.

    Type Parameters

    • C

      The output column type

    • TTable extends TableName

      The table name from the input (inferred at call site)