UNPKG

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