版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
123456789101112
  1. import * as vite from 'vite';
  2. import { ModuleNode } from 'vite';
  3. import { ResolveTSFileIdImpl } from './ts.js';
  4. import { PluginContext } from 'rollup';
  5. import '@babel/types';
  6. declare const RollupResolve: () => {
  7. resolve: (ctx: PluginContext) => ResolveTSFileIdImpl;
  8. handleHotUpdate: (this: void, ctx: vite.HmrContext) => void | ModuleNode[] | Promise<void | ModuleNode[]>;
  9. };
  10. export { RollupResolve };