Interface IModelDecoration

Expand description

A decoration in the model.

interface IModelDecoration {
    id: string;
    options: IModelDecorationOptions;
    ownerId: number;
    range: Range;
}

Properties§

§readonly id: string

Identifier for a decoration.

§readonly options: IModelDecorationOptions

Options associated with this decoration.

§readonly ownerId: number

Identifier for a decoration's owner.

§readonly range: Range

Range that this decoration covers.