UNPKG

298 BTypeScriptView Raw
1/** Object that allows configuring Git user name and email. */
2export interface Configurable {
3 /**
4 * Sets the given user and email as the running git commands
5 * @param {string} user
6 * @param {string} email
7 */
8 setUserConfig(user: string, email: string): Promise<this>;
9}