@nextcloud/dialogs
    Preparing search index...

    Type Alias UnwrapRefSimple<T>

    UnwrapRefSimple: T extends | Function
    | CollectionTypes
    | BaseTypes
    | Ref
    | RefUnwrapBailTypes[keyof RefUnwrapBailTypes]
    | { "[RawSymbol]"?: true }
        ? T
        : T extends any[]
            ? { [K in keyof T]: UnwrapRefSimple<T[K]> }
            : T extends object & { "[ShallowReactiveMarker]"?: never }
                ? { [P in keyof T]: P extends symbol ? T[P] : UnwrapRef<T[P]> }
                : T

    Type Parameters

    • T