UNPKG

356 BTypeScriptView Raw
1import { BaseService, BaseRequestOptions } from '../infrastructure';
2export declare class Search extends BaseService {
3 all(scope: string, search: string, { projectId, groupId, ...options }: {
4 projectId?: string | number;
5 groupId?: string | number;
6 } & BaseRequestOptions): Promise<import("../infrastructure").GetResponse>;
7}