21 lines
305 B
TypeScript
21 lines
305 B
TypeScript
export interface ICommitInfo {
|
|
/**
|
|
* the name of the project
|
|
*/
|
|
name: string;
|
|
/**
|
|
* the current version of the project
|
|
*/
|
|
version: string;
|
|
|
|
/**
|
|
* the description of the project
|
|
*/
|
|
description: string;
|
|
|
|
/**
|
|
* the changelog of the project
|
|
*/
|
|
changelog?: string[];
|
|
}
|