one
Version:
One is a new React Framework that makes Vite serve both native and web.
9 lines • 384 B
TypeScript
import type { Plugin } from 'vite';
declare const DEVTOOLS_VIRTUAL_ID = "/@one/dev.js";
export type DevtoolsPluginOptions = {
/** include devtools UI (overlay, inspector) - default true */
includeUI?: boolean;
};
export declare function createDevtoolsPlugin(options?: DevtoolsPluginOptions): Plugin;
export { DEVTOOLS_VIRTUAL_ID };
//# sourceMappingURL=devtoolsPlugin.d.ts.map