mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 04:58:17 +00:00
14 lines
368 B
TypeScript
14 lines
368 B
TypeScript
|
|
/** Represents information about a user (e.g. committer, author, tagger) */
|
|
export class UserInfo {
|
|
/**
|
|
* Creates a new instance
|
|
* @param name - User's name
|
|
* @param email - User's email
|
|
* @param commits - Number of commits in the scope evaluated
|
|
*/
|
|
constructor(
|
|
public name: string,
|
|
public email: string,
|
|
public commits: number) { }
|
|
}
|