UNPKG

pip-services4-persistence-node

Version:

Persistence Components for Pip.Services in Node.js / ES2017

6 lines (5 loc) 325 B
/** @module util */ import { LineRange } from "./LineRange"; export declare const getFileExtension: (filename: string) => string; export declare const getLinesUpToIndex: (file: string, index: number | null) => number; export declare const getLineRange: (file: string, searchingText: string, postition?: number) => LineRange;