chore: column settings

This commit is contained in:
jialin
2026-02-01 20:22:25 +08:00
parent 043218937f
commit 0849a2f114
16 changed files with 611 additions and 293 deletions
+10
View File
@@ -37,14 +37,24 @@ const writeState = (key: string, data: any) => {
}
};
const readColumnSettings = (key: string) => {
return readState(key);
};
const writeColumnSettings = (key: string, data: any) => {
writeState(key, data);
};
export {
CRYPT_TEXT,
IS_FIRST_LOGIN,
REMEMBER_ME_KEY,
getRememberMe,
readColumnSettings,
readState,
rememberMe,
removeRememberMe,
writeColumnSettings,
writeState
};