This object holds the information of a next pattern match. It is returned by the IDocumentView.findAsync, IDocumentView.findRegExpAsync and IDocumentView.findNextAsync methods.
interface FindResult {
// Properties
readonly ${offset}: number;
readonly ${size}: number;
}
// This interface is not available in managed environment
// This interface is not available in native environment
readonly offset: number;
// This property is not available in managed environment
// This property is not available in native environment
The starting offset of a match.
readonly size: number;
// This property is not available in managed environment
// This property is not available in native environment
Match size.