Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // used this: import h from "inferno-hyperscript";
  2. // which has: export default function hyperscript(_tag: string | VNode | Function, _props?: any, _children?: InfernoChildren): VNode;
  3. // but the it is compiled to:
  4.  
  5. define('External2',["require", "exports", "inferno-hyperscript"], function (require, exports, inferno_hyperscript_1) {
  6.     "use strict";
  7.     Object.defineProperty(exports, "__esModule", { value: true });
  8.     exports.hyperscript = inferno_hyperscript_1.default; // undefined
  9. });
  10. // inferno_hyperscript_1 is the default exported function I want
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement