feat: init
This commit is contained in:
12
node_modules/simple-git/dist/src/lib/tasks/grep.d.ts
generated
vendored
Normal file
12
node_modules/simple-git/dist/src/lib/tasks/grep.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { SimpleGit } from '../../../typings';
|
||||
export interface GitGrepQuery extends Iterable<string> {
|
||||
/** Adds one or more terms to be grouped as an "and" to any other terms */
|
||||
and(...and: string[]): this;
|
||||
/** Adds one or more search terms - git.grep will "or" this to other terms */
|
||||
param(...param: string[]): this;
|
||||
}
|
||||
/**
|
||||
* Creates a new builder for a `git.grep` query with optional params
|
||||
*/
|
||||
export declare function grepQueryBuilder(...params: string[]): GitGrepQuery;
|
||||
export default function (): Pick<SimpleGit, 'grep'>;
|
||||
Reference in New Issue
Block a user