SheetXL - v0.3.20
    Preparing search index...

    Type Alias ResolvableProperties<T>

    ResolvableProperties: Partial<
        {
            [Property in keyof T]: | T[Property]
            | string
            | null
            | ResolvableProperties<T[Property]>
        },
    >

    Recursively converts a type into a derived type where any field can be a string or a function that takes the old value.

    Type Parameters

    • T