版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

plugins.d.ts 303 B

12345678910
  1. import { Factory, FactoryOutput, OptionsPlugin } from './types.js';
  2. import 'unplugin';
  3. import 'webpack';
  4. import 'rollup';
  5. import 'vite';
  6. import 'esbuild';
  7. declare const getPluginList: <UserOptions>(factory: Factory<UserOptions>) => FactoryOutput<UserOptions, OptionsPlugin>;
  8. export { getPluginList };