UNPKG

282 BTypeScriptView Raw
1export class Refspec {
2 static parse(input: string, is_fetch: number): Promise<Refspec>;
3 direction(): number;
4 dst(): string;
5 dstMatches(refname: string): number;
6 force(): number;
7 src(): string;
8 srcMatches(refname: string): number;
9 string(): string;
10}