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

    Type Alias FlowSchemaType<I>

    FlowSchemaType: {
        [C in keyof I as C extends string ? C : never]: TypeOfWithFlowObject<
            I[C],
        >
    }

    Transforms a Flow schema definition (a record of FlowValueTypes) into its corresponding TypeScript/JavaScript type representation. Each property in the resulting type will have its type inferred using TypeOfWithFlowObject.

    Type Parameters

    • I extends Record<string, FlowValueType>

      The input schema definition, expected to be a record where keys are string identifiers and values are FlowValueType.