@lark.js/mvc 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vite.d.cts CHANGED
@@ -29,10 +29,13 @@ import { Plugin } from 'vite';
29
29
  *
30
30
  * @param options - Plugin options
31
31
  * @param options.debug - Enable debug mode with line tracking (default: false)
32
+ * @param options.virtualDom - Generate VDOM output instead of HTML string (default: false)
32
33
  * @returns Vite plugin instance
33
34
  */
34
35
  declare function larkMvcPlugin(options?: {
35
36
  debug?: boolean;
37
+ virtualDom?: boolean;
38
+ useSwc?: boolean;
36
39
  }): Plugin;
37
40
 
38
41
  export { larkMvcPlugin as default, larkMvcPlugin };
package/dist/vite.d.ts CHANGED
@@ -29,10 +29,13 @@ import { Plugin } from 'vite';
29
29
  *
30
30
  * @param options - Plugin options
31
31
  * @param options.debug - Enable debug mode with line tracking (default: false)
32
+ * @param options.virtualDom - Generate VDOM output instead of HTML string (default: false)
32
33
  * @returns Vite plugin instance
33
34
  */
34
35
  declare function larkMvcPlugin(options?: {
35
36
  debug?: boolean;
37
+ virtualDom?: boolean;
38
+ useSwc?: boolean;
36
39
  }): Plugin;
37
40
 
38
41
  export { larkMvcPlugin as default, larkMvcPlugin };