mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
9a40d3f6ea
- codegen/packages/spark-tools → frontends/codegen/packages/spark-tools - root pastebin/ was subset of frontends/pastebin/, removed Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 {};
|