@qwik.dev/core
Version:
An open source framework for building instant loading web apps at any scale, without the extra effort.
23 lines (19 loc) • 414 B
TypeScript
import type { PluginOption } from 'vite';
/** @public */
export declare interface InsightManifest {
manual: Record<string, string>;
prefetch: {
route: string;
symbols: string[];
}[];
}
/**
* @beta
* @experimental
*/
export declare function qwikInsights(qwikInsightsOpts: {
publicApiKey: string;
baseUrl?: string;
outDir?: string;
}): Promise<PluginOption>;
export { }