UNPKG

409 BTypeScriptView Raw
1import { BaseRequestOptions, BaseService, PaginatedRequestOptions } from '../infrastructure';
2import { ProjectSchema } from './Projects';
3export declare class GroupProjects extends BaseService {
4 all(groupId: string | number, options?: PaginatedRequestOptions): Promise<ProjectSchema[]>;
5 add(groupId: string | number, projectId: string | number, options?: BaseRequestOptions): Promise<object>;
6}