blob: 0cca179db41aef4537680e0bc5615f35f6cfb9d1 (
plain)
1
2
3
4
5
6
7
8
9
|
import { Action } from '../flux/action';
import { AuthToken } from '../models/authentication';
export class UpdateAuthentication extends Action {
constructor (public bearerToken: AuthToken | null) {
super();
}
}
|