module-3250-ext-a.js 614 B

12345678910111213
  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. // module-3250-ext-a.js
  6. import * as ns from './module-3250-ext-a.js';
  7. export let a;
  8. export * from './module-3250-ext-b.js';
  9. var stringKeys = Object.getOwnPropertyNames(ns);
  10. assert.areEqual('["a","b"]', JSON.stringify(stringKeys));