Interface IModelDecoration

A decoration in the model.

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

Properties

Properties

id: string

Identifier for a decoration.

Options associated with this decoration.

ownerId: number

Identifier for a decoration's owner.

range: Range

Range that this decoration covers.