1 | export { table, logger, sticker, instructions, isInteractive, supportsColors, testingRenderer, tasks as tasksUi, } from '@poppinss/cliui';
|
2 | import { PromptContract } from '@poppinss/prompts';
|
3 | import './src/disableLogger';
|
4 | /**
|
5 | * Returns a new instance of prompt. Also we lazy load the prompts
|
6 | */
|
7 | declare function getPrompt(): PromptContract;
|
8 | /**
|
9 | * Sharing the sink version, since sink is mainly passed as a reference by
|
10 | * the cli
|
11 | */
|
12 | export declare const sinkVersion: string;
|
13 | export { getPrompt };
|
14 | export * as files from './src/Files';
|
15 | export * as tasks from './src/Tasks';
|
16 | export * as utils from './src/Utils';
|