An object describing a completion option injection into text.

interface IPatch {
    end: number;
    start: number;
    value: string;
}

Properties

Properties

end: number

The end of the range to be patched.

start: number

The start of the range to be patched.

value: string

The value to be patched in.