hardlounge/client/js/auth.ts

10 lines
167 B
TypeScript

import storage from "./localStorage";
import location from "./location";
export default class Auth {
static signout() {
storage.clear();
location.reload();
}
}