Interface OperationMove

interface OperationMove {
    from: string;
    op: "move";
    path: string | Path;
}

Hierarchy (view full)

Properties

Properties

from: string
op: "move"
path: string | Path