Interface OperationStrDel1

Removes len number of characters from a string starting at position pos.

interface OperationStrDel1 {
    op: "str_del";
    path: string | Path;
    pos: number;
    str: string;
}

Hierarchy (view full)

Properties

Properties

op: "str_del"
path: string | Path
pos: number
str: string