1 2 3 4 5 6 7 8
import { Action } from '../flux/action'; export class UpdateAuthentication extends Action { constructor(public bearerToken: string | null) { super(); } }