@servicenow/sdk - v4.4.1
    Preparing search index...
    TypeOfWithFlowObject: C extends Typed<infer T>
        ? T
        : C extends FlowObjectType
            ? InferFlowObject<C>
            : C extends FlowArrayType ? InferFlowArray<C> : unknown

    A utility type to infer the TypeScript/JavaScript type from any FlowValueType.

    • If C is a Typed<T> (e.g., a database column), it resolves to the base type T.
    • If C is a FlowObjectType, it uses InferFlowObject to determine its structure.
    • Otherwise, it resolves to unknown.

    Type Parameters

    • C

      The FlowValueType (Column, FlowObjectType, or FlowArrayType) to infer.