Add optional field 'expand' to SearchQuery, remove duplicate interface (#38845)

This commit is contained in:
Marlene Koh
2019-10-03 22:21:02 +02:00
committed by Ryan Cavanaugh
parent 578a764987
commit b3949e05ae

View File

@@ -354,12 +354,7 @@ declare namespace JiraApi {
startAt?: number;
maxResults?: number;
fields?: string[];
}
interface SearchQuery {
startAt?: number;
maxResults?: number;
fields?: string[];
expand?: string[];
}
interface UriOptions {