create-app.d.ts 434 B

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