Skip to main content
Version: v1

IDirectorySetOperation Interface

Operation indicating a value should be set for a key.

Signature

export interface IDirectorySetOperation

Properties

Property Type Description
key string Directory key being modified.
path string Absolute path of the directory where the modified key is located.
type "set" String identifier of the operation type.
value ISerializableValue Value to be set on the key.

Property Details

key

Directory key being modified.

Signature

key: string;

Type: string

path

Absolute path of the directory where the modified key is located.

Signature

path: string;

Type: string

type

String identifier of the operation type.

Signature

type: "set";

Type: "set"

value

Value to be set on the key.

Signature

value: ISerializableValue;

Type: ISerializableValue