Interface CopyOptions

An optional value for SetOperators that want to tailor the user description.

interface CopyOptions {
    description?: string;
    isCut?: boolean;
}

Hierarchy (view full)

Properties

Properties

description?: string

A description that is used for versioning and tracking changes.

Default Value

'determined by the consumer'
isCut?: boolean

If true then during copy the old values will be remove. (if possible)

Default Value

false