UNPKG

azdev-automation

Version:

Azure DevOps automation framework enables access control automation of projects, pipelines and repositories configuration in Azure DevOps Services

18 lines (17 loc) 364 B
export interface IAutomation { run(): Promise<void>; } export interface IEndpoint { url: string; account: string; token: string; } export interface IParameters { config: string; policies: string; schemas: string; projectSetup: boolean; accessPermissions: boolean; branchPolicies: boolean; serviceConnections: boolean; }