/** Object that allows configuring Git user name and email. */ export interface Configurable { /** * Sets the given user and email as the running git commands * @param {string} user * @param {string} email */ setUserConfig(user: string, email: string): Promise; } //# sourceMappingURL=Configurable.d.ts.map