File size: 279 Bytes
b1a4d81
22d2310
b1a4d81
 
 
09bd50c
 
0a4b979
8fce765
1
2
3
4
5
6
7
8
9
import { writable } from "svelte/store";
// import cookies from "js-cookie";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const userStore = writable<any>(null);

export const openWindowLogin = async () => {
  window.open("/api/auth/login", "_blank");
};