/** * Service for handling auth tokens */ import { JwtTokenBase } from '@bitblit/ratchet/common'; export interface WebTokenManipulator { extractTokenFromAuthorizationHeader(header: string): Promise; }