Skip to content

Commit 76ebd13

Browse files
committed
chore(docs): added missing docs to GitLogIndexStatus interface
1 parent 81b33ca commit 76ebd13

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

packages/library/src/types.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,24 @@ export interface GitLogPaging {
186186
}
187187

188188
export interface GitLogIndexStatus {
189+
/**
190+
* The number of modified files on
191+
* the checked-out branch according
192+
* to the Git index.
193+
*/
189194
modified: number
195+
196+
/**
197+
* The number of added files on
198+
* the checked-out branch according
199+
* to the Git index.
200+
*/
190201
added: number
202+
203+
/**
204+
* The number of deleted files on
205+
* the checked-out branch according
206+
* to the Git index.
207+
*/
191208
deleted: number
192209
}

0 commit comments

Comments
 (0)