UNPKG

create-expo-module

Version:

The script to create the Expo module

4 lines (3 loc) 211 B
import ora from 'ora'; export type StepOptions = ora.Options; export declare function newStep<Result>(title: string, action: (step: ora.Ora) => Promise<Result> | Result, options?: StepOptions): Promise<Result>;