gitlab
Version:
Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.
10 lines (9 loc) • 400 B
TypeScript
import { BaseService, BaseRequestOptions } from '../infrastructure';
import { ProjectId, GroupId } from '.';
declare class Search extends BaseService {
all(scope: string, search: string, { projectId, groupId, ...options }: {
projectId?: ProjectId;
groupId?: GroupId;
} & BaseRequestOptions): Promise<import("../infrastructure").GetResponse>;
}
export default Search;