UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

19 lines (18 loc) 334 B
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[]; }