Skip to main content
Version: v1

EditWithoutId Interface

A collection of changes to the tree that are applied atomically. If any individual change fails to apply, the entire Edit will fail to apply.

Signature

export interface EditWithoutId<TChange> extends EditBase<TChange>

Extends: EditBase

Type Parameters

Parameter Description
TChange

Properties

Property Modifiers Type Description
id optional never Used to explicitly state that EditWithoutId cannot contain an id and prevents type Edit from being assigned to type EditWithoutId.

Property Details

id

Used to explicitly state that EditWithoutId cannot contain an id and prevents type Edit from being assigned to type EditWithoutId.

Signature

readonly id?: never;

Type: never