@nextcloud/dialogs
    Preparing search index...

    Interface ConflictResolutionResult<T>

    SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors SPDX-License-Identifier: AGPL-3.0-or-later

    interface ConflictResolutionResult<T extends ConflictInput> {
        renamed: T[];
        selected: T[];
        skipped: T[];
    }

    Type Parameters

    Index

    Properties

    renamed: T[]

    The incoming nodes which should be renamed. Meaning those nodes still should be uploaded but with a new unique name to not override existing nodes.

    selected: T[]

    The selected incoming nodes. Meaning this selected incoming nodes should overwrite the existing nodes.

    skipped: T[]

    The nodes not selected for upload. Meaning those incoming nodes should be skipped from the action and not be used.