mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 23:18:48 +00:00
hook, store 리네이밍
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
export const accessToken = writable<string | null>(null);
|
||||
export const accessTokenStore = writable<string | null>(null);
|
||||
|
||||
2
src/lib/stores/index.ts
Normal file
2
src/lib/stores/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "./auth";
|
||||
export * from "./key";
|
||||
@@ -1,4 +1,4 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
export const pubKey = writable<CryptoKey | null>(null);
|
||||
export const privKey = writable<CryptoKey | null>(null);
|
||||
export const pubKeyStore = writable<CryptoKey | null>(null);
|
||||
export const privKeyStore = writable<CryptoKey | null>(null);
|
||||
|
||||
Reference in New Issue
Block a user