Interface Highlight
interface Highlight {
priority: number;
type: HighlightType;
forEach(
callbackfn: (
value: AbstractRange,
key: AbstractRange,
parent: Highlight,
) => void,
thisArg?: any,
): void;
}
priority: number;
type: HighlightType;
forEach(
callbackfn: (
value: AbstractRange,
key: AbstractRange,
parent: Highlight,
) => void,
thisArg?: any,
): void;
}
 Methods
forEach 
- forEach(
 callbackfn: (
 value: AbstractRange,
 key: AbstractRange,
 parent: Highlight,
 ) => void,
 thisArg?: any,
 ): void
- Parameters- callbackfn: (value: AbstractRange, key: AbstractRange, parent: Highlight) => void
- OptionalthisArg: any
 - Returns void
MDN Reference