mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import type { PluginOption } from 'vite';
|
|
interface Opts {
|
|
serverURL?: string;
|
|
disabled?: boolean;
|
|
maxRetries?: number;
|
|
retryDelay?: number;
|
|
}
|
|
export default function sparkAgent(opts?: Opts): PluginOption;
|
|
export {};
|