mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 01:33:09 +02:00
7190bd00c9
* feat: classicモードでテーマが自動変更された際元に戻すように * docs: update CHANGELOG.md * fix: prefixを miux:ui_temp から ui_temp に変更
37 lines
764 B
TypeScript
37 lines
764 B
TypeScript
type Keys =
|
|
'v' |
|
|
'lastVersion' |
|
|
'instance' |
|
|
'emojis' | // TODO: indexed db
|
|
'lastEmojisFetchedAt' |
|
|
'account' |
|
|
'accounts' |
|
|
'latestDonationInfoShownAt' |
|
|
'neverShowDonationInfo' |
|
|
'lastUsed' |
|
|
'lang' |
|
|
'drafts' |
|
|
'hashtags' |
|
|
'wallpaper' |
|
|
'theme' |
|
|
'colorSchema' |
|
|
'useSystemFont' |
|
|
'fontSize' |
|
|
'ui' |
|
|
'ui_temp' |
|
|
'locale' |
|
|
'localeVersion' |
|
|
'theme' |
|
|
'customCss' |
|
|
'message_drafts' |
|
|
'scratchpad' |
|
|
`miux:${string}` |
|
|
`ui:folder:${string}` |
|
|
`themes:${string}` |
|
|
`aiscript:${string}`;
|
|
|
|
export const miLocalStorage = {
|
|
getItem: (key: Keys) => window.localStorage.getItem(key),
|
|
setItem: (key: Keys, value: string) => window.localStorage.setItem(key, value),
|
|
removeItem: (key: Keys) => window.localStorage.removeItem(key),
|
|
};
|