tiny-fsearch
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -45,3 +45,7 @@ /**************** | ||
*/ | ||
export function fquery(searchable: string | RegExp, source: string | Buffer, opts: ISearchOptions): ISearchMatch[]; | ||
export function fquery( | ||
searchable: string | RegExp, | ||
source: string | Buffer, | ||
opts: ISearchOptions | ||
): Omit<ISearchMatch, 'filePath'>; | ||
@@ -72,5 +76,5 @@ /// Promisified versions of the available functions. | ||
opts: ISearchOptions | ||
): Promise<ISearchMatch[]>; | ||
): Promise<Omit<ISearchMatch, 'filePath'>>; | ||
} | ||
export as namespace tiny; |
{ | ||
"name": "tiny-fsearch", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A small and versatile find-in-file/source library.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
22741
135