ValidReExportStatements.js 729 B

123456789101112
  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. // Re-export statements
  6. export * from 'ValidExportDefaultStatement1.js';
  7. export {} from 'ValidExportDefaultStatement2.js';
  8. export { foo } from 'ValidExportStatements.js';
  9. export { bar, } from 'ValidExportStatements.js';
  10. export { foo as foo2, baz } from 'ValidExportStatements.js'
  11. export { foo as foo3, bar as bar2, } from 'ValidExportStatements.js'