API/api.medcify.app/node_modules/snyk/dist/cli/commands/apps/create-app.d.ts
2022-09-26 11:41:44 +05:30

11 lines
434 B
TypeScript

import { ICreateAppRequest } from '../../../lib/apps';
/**
* Function to process the app creation request and
* handle any errors that are request error and print
* in a formatted string. It throws is error is unknown
* or cannot be handled.
* @param {ICreateAppRequest} data to create the app
* @returns {String} response formatted string
*/
export declare function createApp(data: ICreateAppRequest): Promise<string | void>;