mirror of
https://github.com/thelounge/thelounge
synced 2024-11-21 19:43:07 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import storage from "./localStorage";
|
|
import location from "./location";
|
|
|
|
export default class Auth {
|
|
static signout() {
|
|
storage.clear();
|
|
location.reload();
|
|
}
|
|
}
|