index.mjs raw

   1  // TinyJS Runtime — Index (Relay SW)
   2  // Re-exports runtime modules needed by the relay 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 _ws from './ws.mjs';
  11  import * as _crypto from './crypto.mjs';
  12  import * as _subtle from './subtle.mjs';
  13  import * as _sw from './sw.mjs';
  14  import * as _idb from './idb.mjs';
  15  import * as _bc from './bc.mjs';
  16  
  17  export {
  18    _runtime as runtime,
  19    _goroutine as goroutine,
  20    _channel as channel,
  21    _types as types,
  22    _builtin as builtin,
  23    _sync as sync,
  24    _ws as ws,
  25    _crypto as crypto,
  26    _subtle as subtle,
  27    _sw as sw,
  28    _idb as idb,
  29    _bc as bc,
  30  };
  31