ModuleComplexReexports.js 696 B

1234567891011
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. export { bar2 as ModuleComplexReexports_foo } from 'ModuleComplexExports.js';
  6. export { function as switch } from 'ModuleComplexExports.js';
  7. import { foo, foo2, foo as localfoo, foo2 as localfoo2 } from "ModuleComplexExports.js";
  8. export { foo, foo2 as baz, localfoo, localfoo as bar, localfoo2, localfoo2 as bar2 };