mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-02 16:15:57 +09:00
36 lines
732 B
TypeScript
36 lines
732 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' |
|
|
'locale' |
|
|
'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),
|
|
};
|