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

    Type Alias TableAwareRecordWithFallback<T>

    TableAwareRecordWithFallback: HasDefinedSchema<T> extends true
        ? TableAwareRecord<T>
        : Record<string, unknown>

    Table-aware record with fallback for undefined schemas.

    • If table schema IS defined: use TableAwareRecord for type-safe field access
    • If table schema is NOT defined: allow property access (values are untyped)

    Type Parameters