mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 10:39:38 -06:00
17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
import { PromptModuleAPI } from '@vue/cli'
|
|
|
|
interface CliPromptModule {
|
|
(api: PromptModuleAPI): void
|
|
}
|
|
|
|
declare function assertPromptModule(
|
|
module: CliPromptModule | CliPromptModule[],
|
|
expectedPrompts: object[],
|
|
expectedOptions: object,
|
|
opts?: {
|
|
pluginsOnly?: boolean
|
|
},
|
|
): Promise<void>
|
|
|
|
export = assertPromptModule
|