Interface HighlightRegistry
interface HighlightRegistry {
forEach(
callbackfn: (
value: Highlight,
key: string,
parent: HighlightRegistry,
) => void,
thisArg?: any,
): void;
}
forEach(
callbackfn: (
value: Highlight,
key: string,
parent: HighlightRegistry,
) => void,
thisArg?: any,
): void;
}
Index
Methods
Methods
forEach
- forEach(
callbackfn: (
value: Highlight,
key: string,
parent: HighlightRegistry,
) => void,
thisArg?: any,
): void Parameters
- callbackfn: (value: Highlight, key: string, parent: HighlightRegistry) => void
Optional
thisArg: any
Returns void