1 | import { TestAdapter as BaseTestAdapter, type TestAdapterOptions } from '@yeoman/adapter/testing';
|
2 | export declare class TestAdapter extends BaseTestAdapter {
|
3 | constructor(options?: TestAdapterOptions);
|
4 | }
|
5 | export { type DummyPromptOptions, type DummyPromptCallback, type TestAdapterOptions } from '@yeoman/adapter/testing';
|
6 | export type AskedQuestions = Array<{
|
7 | name: string;
|
8 | answer: any;
|
9 | }>;
|