UNPKG

318 BTypeScriptView Raw
1import { Plugin } from '../../lib/plugin';
2export interface PluginAnswers {
3 name: string;
4 description?: string;
5 typescript: boolean;
6}
7export interface PluginOptions {
8 install: boolean;
9 local: boolean;
10 registry: string;
11}
12declare const _default: (api: Plugin) => void;
13export default _default;