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
13 lines (12 loc) • 520 B
TypeScript
import { ApplicationProperties, Basic, EndpointService } from "../types";
/**
* Class to manage and expose all endpoits and operations below '/rest/api/1.0/application-properties/*'
*/
export declare class ApplicationEndpoint extends EndpointService {
constructor(auth: Basic);
/**
* Retrieve version information and other application properties
* @returns {Promise<ApplicationProperties>} Promise with the application properties data
*/
get(): Promise<ApplicationProperties>;
}