index.mjs raw

   1  // TinyJS Runtime — Index (Shell SW)
   2  // Re-exports runtime modules needed by the shell service worker.
   3  
   4  import * as _runtime from './runtime.mjs';
   5  import * as _goroutine from './goroutine.mjs';
   6  import * as _channel from './channel.mjs';
   7  import * as _types from './types.mjs';
   8  import * as _builtin from './builtin.mjs';
   9  import * as _sync from './sync.mjs';
  10  import * as _crypto from './crypto.mjs';
  11  import * as _subtle from './subtle.mjs';
  12  import * as _sw from './sw.mjs';
  13  import * as _bc from './bc.mjs';
  14  
  15  export {
  16    _runtime as runtime,
  17    _goroutine as goroutine,
  18    _channel as channel,
  19    _types as types,
  20    _builtin as builtin,
  21    _sync as sync,
  22    _crypto as crypto,
  23    _subtle as subtle,
  24    _sw as sw,
  25    _bc as bc,
  26  };
  27