Interface OperationStrIns

Inserts a value string into a string at position pos.

interface OperationStrIns {
    op: "str_ins";
    path: string | Path;
    pos: number;
    str: string;
}

Hierarchy (view full)

Properties

Properties

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