UNPKG

@builder.io/mitosis

Version:

Write components once, run everywhere. Compiles to Vue, React, Solid, and Liquid. Import code from Figma and Builder.io

16 lines (15 loc) 638 B
import type { StateValue } from '../../../types/mitosis-component'; import type { SveltosisComponent } from '../types'; type SveltosisStateValue = StateValue & { arguments?: string[]; type: string; }; export declare function preventNameCollissions(json: SveltosisComponent, item: SveltosisStateValue): { code: string; typeParameter?: string | undefined; type: "function" | "method" | "property" | "getter"; propertyType?: import("../../../types/mitosis-component").ReactivityType | undefined; arguments?: string[] | undefined; }; export declare function postProcess(json: SveltosisComponent): void; export {};