default: {
Clone: ((source: string, destination??: string, branch?: string, commit?: string) => Promise<boolean>);
Pull: ((branch: string) => Promise<boolean>);
Push: (() => Promise<boolean>);
}
Type declaration
-
Clone: ((source: string, destination??: string, branch?: string, commit?: string) => Promise<boolean>)
-
- (source: string, destination??: string, branch?: string, commit?: string): Promise<boolean>
-
Parameters
-
source: string
-
Optional
destination: string = ...
-
Optional
branch: string
-
Optional
commit: string
Returns Promise<boolean>
-
Pull: ((branch: string) => Promise<boolean>)
-
- (branch: string): Promise<boolean>
-
Returns Promise<boolean>
-
Push: (() => Promise<boolean>)
-
- (): Promise<boolean>
-
Returns Promise<boolean>
Function
Clone
Export
Returns