@mentaport/certificates-projects
Version:
Mentaport certificate-projects SDK, for certificate admins.
36 lines (35 loc) • 993 B
TypeScript
import { MentaportUtils, Environment, Base } from "@mentaport/common";
import { ProjectsSDK } from './projects';
export * from './types';
declare class CertificateProjectsSDK extends Base {
/**
* Constructor for Supplement SDK
*
* @param {apiKey} APIKey
*
* @returns {}
*/
constructor(apiKey: string);
/**
* Function to set the client with default env Production
* All users have to call this function
*
* @param {url} urlPath (optional)
*
* @returns {void}
*/
setClient(): void;
/**
* Function to set the client environment.
* All users have to call this function
*
* @param {environment} Environment to run sdk in
* @param {url} urlPath (optional-only for testing)
*
* @returns {void}
*/
setClientEnv(environment: Environment, url?: string): void;
}
interface CertificateProjectsSDK extends Base, ProjectsSDK {
}
export { CertificateProjectsSDK, MentaportUtils };