/** * Copyright (c) 2026 hangtiancheng * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /** Plugin options */ interface LarkMvcWebpackPluginOptions { /** Component-module extensions to match (default: /\.[jt]sx$/) */ test?: RegExp; /** Exclude pattern (default: /node_modules/) */ exclude?: RegExp; } /** * Webpack loader entry point. * * Injects the component HMR snippet into modules with a default export. * Runs with `enforce: "pre"` (before ts-loader/babel/SWC), receiving raw * source — the injected code is plain `import.meta.webpackHot` JavaScript, * valid in both TS and TSX. Other modules pass through untouched. */ declare function larkMvcLoader(this: unknown, source: string): string; /** * Webpack plugin that auto-registers the @lark.js/mvc HMR loader. * * This is the recommended integration approach. The plugin adds a single * `enforce: "pre"` rule over JSX modules; the loader is a fast no-op for * files without a line-leading `export default`. */ declare class LarkMvcPlugin { private options; constructor(options?: LarkMvcWebpackPluginOptions); /** * Webpack plugin entry point. * Called by webpack when the plugin is applied. */ apply(compiler: { options: { mode?: unknown; module: { rules: unknown[]; }; }; }): void; } export { LarkMvcPlugin, type LarkMvcWebpackPluginOptions, larkMvcLoader as default, larkMvcLoader };