mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* nodegit: Added methods. Added methods to nodegit types corresponding to documentation https://www.nodegit.org/api/refspec/#parse * nodegit: Added `Refspec` tests * nodegit: Fixed error Signed-off-by: scottxu <scottxu@scottxublog.com>
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
export class Refspec {
|
|
static parse(input: string, is_fetch: number): Promise<Refspec>;
|
|
direction(): number;
|
|
dst(): string;
|
|
dstMatches(refname: string): number;
|
|
force(): number;
|
|
src(): string;
|
|
srcMatches(refname: string): number;
|
|
string(): string;
|
|
}
|