azdev-automation
Version:
Azure DevOps automation framework enables access control automation of projects, pipelines and repositories configuration in Azure DevOps Services
6 lines (5 loc) • 315 B
TypeScript
export interface IEndpointHelper {
getServiceEndpoints(projectName: string): Promise<any[]>;
createGenericServiceEndpoint(name: string, url: string, description: string, projectName: string, projectId: string): Promise<any>;
fakeServiceEndpoint(projectName: string, projectId: string): Promise<void>;
}