mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
export class Refspec {
|
|
direction(): number;
|
|
dst(): string;
|
|
dstMatches(refname: string): number;
|
|
force(): number;
|
|
src(): string;
|
|
srcMatches(refname: string): number;
|
|
}
|