@lwc/engine-server
Version:
Renders LWC components in a server environment.
10 lines • 469 B
TypeScript
/**
* This API is equivalent to the createElement function exposed by @lwc/engine-dom. It doesn't do anything on
* the server side, however, you may import it.
*
* The whole point of defining this and exporting it is so that you can import it in isomorphic code without
* an error being thrown by the import itself.
* @throws Always throws, as it should not be used.
*/
export declare function createElement(): never;
//# sourceMappingURL=create-element.d.ts.map