Skip to main content
Version: v1

IDirectorySetOperation Interface

Operation indicating a value should be set for a key.

Signature

export interface IDirectorySetOperation

Properties

PropertyTypeDescription
keystringDirectory key being modified.
pathstringAbsolute path of the directory where the modified key is located.
type"set"String identifier of the operation type.
valueISerializableValueValue 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