@builder.io/mitosis 0.0.71 → 0.0.72-0

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.
@@ -1,23 +0,0 @@
1
- import { MitosisNode } from '../types/mitosis-node';
2
- import { BaseTranspilerOptions } from '../types/transpiler';
3
- import { OmitObj } from '../helpers/typescript';
4
- export declare type VueVersion = 2 | 3;
5
- export declare type Api = 'options' | 'composition';
6
- interface VueVersionOpt {
7
- vueVersion: VueVersion;
8
- }
9
- export interface ToVueOptions extends BaseTranspilerOptions, VueVersionOpt {
10
- cssNamespace?: () => string;
11
- namePrefix?: (path: string) => string;
12
- asyncComponentImports?: boolean;
13
- api?: Api;
14
- }
15
- declare type BlockRenderer = (json: MitosisNode, options: ToVueOptions, scope?: Scope) => string;
16
- interface Scope {
17
- isRootNode?: boolean;
18
- }
19
- export declare const blockToVue: BlockRenderer;
20
- declare type VueOptsWithoutVersion = OmitObj<ToVueOptions, VueVersionOpt>;
21
- export declare const componentToVue2: (vueOptions?: VueOptsWithoutVersion) => import("../types/transpiler").Transpiler<string>;
22
- export declare const componentToVue3: (vueOptions?: VueOptsWithoutVersion) => import("../types/transpiler").Transpiler<string>;
23
- export {};