All files / src/auth/session index.ts

100% Statements 8/8
100% Branches 0/0
100% Functions 3/3
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1918x   18x 18x   18x           18x   49x   176x 20x    
import {Session} from './session';
import {SessionStorage} from './session_storage';
import {MemorySessionStorage} from './storage/memory';
import {CustomSessionStorage} from './storage/custom';
 
const ShopifySession = {
  Session,
  MemorySessionStorage,
  CustomSessionStorage,
};
 
export default ShopifySession;
export {
  Session,
  SessionStorage,
  MemorySessionStorage,
  CustomSessionStorage,
};