You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
425 B

import oraReal from 'ora';
/**
* A custom ora spinner that sends the stream to stdout in CI, non-TTY, or expo's non-interactive flag instead of stderr (the default).
*
* @param options
* @returns
*/
export declare function ora(options?: oraReal.Options | string): oraReal.Ora;
/**
* Create a unified section spinner.
*
* @param title
* @returns
*/
export declare function logNewSection(title: string): oraReal.Ora;