UNPKG

recastify

Version:

Web Component transfiguration tool. Convert Web Components in a multitude of formats to other formats.

19 lines (18 loc) 467 B
declare type Prompts = { remote: boolean; hasScope: boolean; scope: string | boolean; src: string | boolean; package: string | boolean; name: string; path?: string; impression?: string; }; /** * Convert a component from one framework to another. * * @param {string} prompts - prompts: Object of the values from the prompt questions; * @returns NULL */ export declare const convertComponent: (prompts: Prompts) => void; export {};