azure-devops-api
Version:
azure devops api for automating add the workitem
11 lines (10 loc) • 339 B
TypeScript
export interface IWorkItemInfo {
type: string;
title: string;
description: string;
iterationPath: string;
areaPath: string;
assignedto: string;
parentLink: string;
}
export declare function createWorkItem(token: string, orgName: string, project: string, workItemInfo: IWorkItemInfo): Promise<number>;