projectmanager-sdk
Version:
Software development kit for the ProjectManager.com API. for TypeScript
33 lines (32 loc) • 1.14 kB
TypeScript
/**
* ProjectManager API for TypeScript
*
* (c) ProjectManager.com, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author ProjectManager.com <support@projectmanager.com>
* @copyright ProjectManager.com, Inc.
* @link https://github.com/projectmgr/projectmanager-sdk-typescript
*/
import { ProjectManagerClient } from "../index.js";
import { AstroResult } from "../index.js";
import { ExportDto } from "../index.js";
import { RiskExportSettingsDto } from "../index.js";
export declare class RiskClient {
private readonly client;
/**
* Internal constructor for this client library
*/
constructor(client: ProjectManagerClient);
/**
* Initiates a new Export action for Risks.
*
* Returns the identifier of this Risk Export.
*
* @param projectId The unique identifier of the Project for which to export Risks
* @param body The settings to use for this export action
*/
createRiskExport(projectId: string, body: RiskExportSettingsDto): Promise<AstroResult<ExportDto>>;
}