mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 07:36:54 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { Plugin } from 'vite';
|
|
import { Options, PublicPluginAPI } from './types.cjs';
|
|
import '@rollup/pluginutils';
|
|
import 'unplugin';
|
|
import '@antfu/utils';
|
|
|
|
declare const _default: (options?: Options | undefined) => Plugin & {
|
|
api: PublicPluginAPI;
|
|
};
|
|
|
|
export { _default as default };
|