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>
      • Function

        Clone

        Export

        Returns

        Parameters

        • source: string
        • Optional destination: string = ...
        • Optional branch: string
        • Optional commit: string

        Returns Promise<boolean>

  • Pull: ((branch: string) => Promise<boolean>)
      • (branch: string): Promise<boolean>
      • Function

        Pull

        Export

        Returns

        Parameters

        • branch: string

        Returns Promise<boolean>

  • Push: (() => Promise<boolean>)
      • (): Promise<boolean>
      • Function

        Push

        Export

        Returns

        Returns Promise<boolean>

Generated using TypeDoc