SCM Graph - add option to return only a subset of history item references (#228932)

This commit is contained in:
Ladislau Szomoru
2024-09-18 12:36:57 +02:00
committed by GitHub
parent be74c1feb5
commit 47a8de0b9f
9 changed files with 16 additions and 13 deletions

View File

@@ -184,7 +184,7 @@ export interface InitOptions {
export interface RefQuery {
readonly contains?: string;
readonly count?: number;
readonly pattern?: string;
readonly pattern?: string | string[];
readonly sort?: 'alphabetically' | 'committerdate';
}