Represents a content index.

interface IIndex {
    content: string;
    length: number;
    start: number;
}

Properties

Properties

content: string

The content of the index.

length: number

The length of the content.

start: number

The start index of the content.