6798effbab
* .formラッパーを削除 * fix type of MkPostFormAttaches * 🚀 * 🎨 * 🎨 * 🎨 * 🎨 * specifiedの時は連合なしをdisabledに * ✌️ * set select default * gap: 2px (max-width: 500px) / 4px * wip * ✌️ * 🎨 * fix maxTextLength * 今後表示しない * 🎨 * cache channel * 🎨 * 連合なしにする * use i18n.ts.neverShow * ✌️ * refactor * fix indent * tweak --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
39 lines
862 B
TypeScript
39 lines
862 B
TypeScript
type Keys =
|
|
'v' |
|
|
'lastVersion' |
|
|
'instance' |
|
|
'account' |
|
|
'accounts' |
|
|
'latestDonationInfoShownAt' |
|
|
'neverShowDonationInfo' |
|
|
'neverShowLocalOnlyInfo' |
|
|
'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}` |
|
|
'lastEmojisFetchedAt' | // DEPRECATED, stored in indexeddb (13.9.0~)
|
|
'emojis' // DEPRECATED, stored in indexeddb (13.9.0~);
|
|
|
|
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),
|
|
};
|