stash-connector
Version:
Module to handle and work with Atlassian Stash projects and repositories throug REST API. Admin your repositories and projects in Stash easy. This project is not an Atlassian official project but use the Atlassian Stash REST API
15 lines (14 loc) • 710 B
TypeScript
import { Basic, EndpointService, Page, PageOptions } from "../types";
/**
* Class to manage and expose all endpoits and operations below '/rest/api/1.0/groups/*'
*/
export declare class GroupsEndpoint extends EndpointService {
constructor(auth: Basic);
/**
* Retrieve a page of group names
* @param {string} [filter] If specified only group names containing the supplied string will be returned
* @param {PageOptions} [pageOptions] Page options to paginate results (or obtain more results per page)
* @returns {Promise<Page<string>>} Promise with the application properties data
*/
list(filter?: string, pageOptions?: PageOptions): Promise<Page<string>>;
}