UNPKG

@zowe/zos-files-for-zowe-sdk

Version:

Zowe SDK to interact with files and data sets on z/OS

22 lines 545 B
/** * This interface defines the information that is stored in the download data set API return object */ export interface ISearchMatchLocation { /** * The line number that the match was found in */ line: number; /** * The column number that the match was found in */ column: number; /** * The contents of that line where the search term was found */ contents: string; /** * The length of the match */ length?: number; } //# sourceMappingURL=ISearchMatchLocation.d.ts.map